Jump to content

Module:Module wikitext

Di Wikipedia, e ensiklopedia liber
Revishon 22:18, 8 febrüari 2021 hasí pa Frank Geerlings (papia | kontrib'nan) (Copied from enwiki)
(dif) ← Edicion ariba | wak revishon aktual (dif) | Revishon mas resien (dif)

Documentation for this module may be created at Module:Module wikitext/doc

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