跳转到内容

模組:Module wikitext

本页使用了标题或全文手工转换
被永久保护的模块
维基百科,自由的百科全书

这是Module:Module wikitext当前版本,由Xiplus留言 | 贡献编辑于2021年5月26日 (三) 05:44 (已保护“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