Module:Test: Difference between revisions
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 edit summary |
||
Line 2: | Line 2: | ||
function p.test(frame) | function p.test(frame) | ||
return "it works" | |||
end | end | ||
return p | return p |
Latest revision as of 03:09, 12 July 2025
Documentation for this module may be created at Module:Test/doc
local p = {}
function p.test(frame)
return "it works"
end
return p