跳转到内容

模組:Unstrip

被永久保护的模块
维基百科,自由的百科全书

这是本页的一个历史版本,由蕭漫留言 | 贡献2022年9月12日 (一) 07:14编辑。这可能和当前版本存在着巨大的差异。

-- This module provides a frontend to the mw.text.unstrip, unstripNoWiki and killMarkers functions
local p = {}

function p.unstrip(frame)
	return mw.text.unstrip(frame.args[1])
end

function p.unstripNoWiki(frame)
	return mw.text.unstripNoWiki(frame.args[1])
end

function p.killMarkers(frame)
	return mw.text.killMarkers(frame.args[1])
end

return p