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