Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Wikitext

From Net 7 Portal Wiki

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