跳转到内容

模組:Module wikitext/sandbox

本页使用了标题或全文手工转换
维基百科,自由的百科全书

这是Module:Module wikitext/sandbox当前版本,由A2569875留言 | 贡献编辑于2023年11月30日 (四) 08:38 (建立Module: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