Module:Test: Difference between revisions

From Foxwells Wiki
Jump to navigation Jump to search
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"
(No difference)

Revision as of 03:06, 12 July 2025

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