Jump to content
Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:FBI QR code: Difference between revisions

From Hacks Guide Wiki
No edit summary
No edit summary
Line 51: Line 51:
end
end


function p.makeTabber(frame, sections)
function p.makeTabberData(sections)
local finalSections = ''
local finalSections = ''
for k, v in ipairs(sections) do
for k, v in ipairs(sections) do
finalSections = finalSections..'|-|'..v[1]..'=\n\n'..v[2]
finalSections = finalSections..'\n|-|'..v[1]..'=\n\n'..v[2]
end
end
return frame:callParserFunction('#tag:tabber', finalSections)
return finalSections
end
 
function p.makeTabber(frame, sections)
return frame:callParserFunction('#tag:tabber', p.makeTabberData(sections))
end
end