Module:Module wikitext

From Linux Web Expert

Revision as of 11:22, 14 February 2023 by imported>Uzume (copied from w:en:Module:Module wikitext)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Usage

This is an auxiliary module used to allow module pages to display wikitext. Use it by setting this module's text value to whatever content you want to display. The _addText helper method may be useful. For example, to tag a module with {{Delete }}, put require('Module:Module wikitext')._addText('{{delete|reason}}') at the top of it.


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