跳转到内容

模組:Module wikitext/sandbox

本页使用了标题或全文手工转换
维基百科,自由的百科全书
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