跳至內容

模組: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