「モジュール:Test」の版間の差分
ナビゲーションに移動
検索に移動
>ReligiousK 細 (戻り値忘れ) |
>充電に強い新芋 編集の要約なし |
||
1行目: | 1行目: | ||
-- This is a module for testing. Please use this for free. | -- This is a module for testing. Please use this for free. tesuya | ||
local p = {} | local p = {} | ||
-- No arguments, used like: {{#invoke:test|nowiki}} | -- No arguments, used like: {{#invoke:test|nowiki}} |
2024年2月9日 (金) 10:53時点における最新版
このモジュールについての説明文ページを モジュール:Test/doc に作成できます
-- This is a module for testing. Please use this for free. tesuya
local p = {}
-- No arguments, used like: {{#invoke:test|nowiki}}
function p.nowiki(frame)
local name = frame.args[1] -- in this example, args[1] is the word KRSW
return "<nowiki>" .. name .. "</nowiki>" -- .. name .. replace by the word KRSW
end
return p