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

提供: 脳科学辞典
ナビゲーションに移動 検索に移動
bsd>Pppery
(Per edit request)
 
(1版 をインポートしました)
 

2025年1月15日 (水) 18:42時点における最新版

このモジュールについての説明文ページを モジュール:Unstrip/doc に作成できます

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