Module:Case series table/Sandbox

From Team Fortress Wiki
Revision as of 20:35, 4 September 2023 by Oap (talk | contribs) (basic set up)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Test
ShotgunShotgun
1 .00%



MinigunMinigun
2 .00%



local p = {}

function p.table(f)
  frame = f
  local args = f:getParent().args
  if #args == 0 then args = f.args end

  body = '<h1>Hello:' .. args['name'] .. '</h1>'
  
  return body
end

return p