モジュール:non-cell
このモジュールについての説明文ページを モジュール:non-cell/doc に作成できます
local m_links = require("モジュール:links")
local lang = require("モジュール:languages").getByCode("non")
local export = {}
function export.create(frame)
local args = frame:getParent().args
local links = {}
if not args[1] or args[1] == "" then
return "―"
else
local words = mw.text.split(args[1], "%s*,%s*")
if words then
for i,j in ipairs(words) do
table.insert(links, m_links.full_link({lang = lang, term = j}))
end
end
end
return table.concat(links, ", ")
end
return export