মডিউল:Shortcut: সংশোধিত সংস্করণের মধ্যে পার্থক্য

১টি সংস্করণ আমদানি করা হয়েছে
(use module:list for plainlist, move templatestyles to module space)
(১টি সংস্করণ আমদানি করা হয়েছে)
৭৭ নং লাইন: ৭৭ নং লাইন:


local root = mw.html.create()
local root = mw.html.create()
root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = 'Module:Shortcut/styles.css'} })
root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = 'Shortcut/styles.css'} })
-- Anchors
-- Anchors
local anchorDiv = root
local anchorDiv = root
১০৩ নং লাইন: ১০৩ নং লাইন:
local shortcutList = root
local shortcutList = root
:tag('div')
:tag('div')
:addClass('module-shortcutboxplain noprint')
:addClass('module-shortcutboxplain plainlist noprint')
:attr('role', 'note')
:attr('role', 'note')
if options.float and options.float:lower() == 'left' then
if options.float and options.float:lower() == 'left' then
১১৭ নং লাইন: ১১৭ নং লাইন:
:wikitext(shortcutHeading)
:wikitext(shortcutHeading)
end
end
local list = shortcutList:tag('ul')
local ubl = require('Module:List').unbulleted(listItems)
for i, item in ipairs(listItems) do
shortcutList:wikitext(ubl)
list:tag('li'):wikitext(item)
end
return tostring(root)
return tostring(root)
end
end