「モジュール:Unstrip」の版間の差分

提供:エケペディア
ナビゲーションに移動 検索に移動
(モジュール)
(相違点なし)

2018年7月15日 (日) 02:40時点における版

このモジュールについての説明文ページを モジュール: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