Module:Ru Paul's Drag Race tables
Revision as of 00:04, 11 July 2020 by blackwiki>Wugapodes (for loop skeleton to check order of args)
| 26x26px | This module is rated as alpha. It is ready for third-party input, and may be used on a few pages to see if problems arise, but should be watched. Suggestions for new features or changes in their input and output mechanisms are welcome. |
This module implements {{Drag Race contestant table}} and {{Drag Race progress table}}. See the code for more details.
local p = {} --p stands for package
function p.main( frame )
templateFrame = frame:getParent()
ret = ''
for k, v in pairs( templateFrame.args ) do
ret = ret .. k .. ' = ' .. v .. "\n"
end
return ret
end
return p