Module:Flag

Katty von Keksburg讨论 | 贡献2024年5月13日 (一) 20:33的版本 (创建页面,内容为“local p = {} function p.flag(country, text) local f = string.format("24px|border|alt=Flag of %s|link=%s", country, country, country) local t if type(text) == "number" then t = "" elseif text ~= nil then t = string.format(" %s", country, text) else t = string.format(" %s", country) end return f .. t end return p”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

可在Module:Flag/doc创建此模块的帮助文档

local p = {}

function p.flag(country, text)
    local f = string.format("[[File:%s.png|24px|border|alt=Flag of %s|link=%s]]", country, country, country)
    local t
    if type(text) == "number" then
        t = ""
    elseif text ~= nil then
        t = string.format(" [[%s|%s]]", country, text)
    else
        t = string.format(" [[%s]]", country)
    end
    return f .. t
end

return p