Module:Test

From Foxwells Wiki
Revision as of 03:06, 12 July 2025 by Cynthia (talk | contribs) (Created page with "local p = {} function p.test(frame) local span = mw.html.create():tag("span") span:wikitext("it works") return tostring(span:done()) end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

local p = {}

function p.test(frame)
  local span = mw.html.create():tag("span")
  span:wikitext("it works")

  return tostring(span:done())
end

return p