模块:Unstrip

来自决策链云智库
Zeroclanzhang讨论 | 贡献2024年1月16日 (二) 17:18的版本 (创建页面,内容为“-- 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”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

Implements {{Unstrip}}, {{UnstripNoWiki}}, and {{KillMarkers}}

See also


-- 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