모듈:translation
보이기
이 모듈에 대한 설명문서는 모듈:translation/설명문서에서 만들 수 있습니다
export = {}
local nbsp = " "
local function wrap(tag, item, style)
if style then
return "<"..tag.." "..'style="'..style..'">'..item.."</"..tag..">"
else
return "<"..tag..'>'..item.."</"..tag..">"
end
end
local function span(item, style)
return wrap("span", item, style)
end
function export.main(frame)
params = {
[1] = {},
[2] = {},
[3] = {},
["덧"] = {}
}
local args = require("모듈:parameters").process(frame:getParent().args, params)
end
return export