More actions
Module:Wikitext/doc
From Wikipedia, see:
https://en.wikipedia.org/wiki/Module:Module_wikitext
https://en.wikipedia.org/w/index.php?title=Module:Documentation
This module is a dependency of Module:Documentation, see the documentation there.
The above doc is transcluded from Module:Wikitext/doc. (edit | history)
Add categories to the /doc subpage, not here. Subpages of this template.
local p = {}
p.text = ''
function p.main()
return p.text
end
function p._addText(text, preprocessFrame)
if preprocessFrame ~= false then
text = (preprocessFrame or mw.getCurrentFrame()):preprocess(text)
end
p.text = p.text .. text
end
return p