모듈:Module wikitext

이 페이지는 준보호되어 있습니다.
위키백과, 우리 모두의 백과사전.

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