৮,৩৯৬টি
সম্পাদনা
(use module:list for plainlist, move templatestyles to module space) |
Nazarzadeh (আলোচনা | অবদান) অ (১টি সংস্করণ আমদানি করা হয়েছে) |
||
৭৭ নং লাইন: | ৭৭ নং লাইন: | ||
local root = mw.html.create() | local root = mw.html.create() | ||
root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = ' | 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 | for i, item in ipairs(listItems) do | ||
list:tag('li'):wikitext(item) | |||
end | |||
return tostring(root) | return tostring(root) | ||
end | end |