Module:Tcw

From PT National Labs
Revision as of 16:05, 1 July 2025 by Qez (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Tcw/doc

local p = {} 

function p.hello( frame )
  local test = mw.html.create("a")
  test:attr("href", "https://wiki.torn.com/wiki/".. frame.args[1])
  test:text("" .. frame.args[1])
  return test:done()
end

return p