開啟主選單

求真百科

模組:Unstrip

於 2016年10月6日 (四) 00:49 由 mediawiki1>Great Brightstar 所做的修訂 建立内容为“-- This module provides a frontend to the mw.text.unstrip and unstripNoWiki functions local p = {} function p.unstrip(frame) return mw.text.unstri...”的新页面)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)

此模塊的文檔可以在模塊:Unstrip/doc創建

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

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

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

return p