模块:Wikidata/Formatters

来自Local Chinese Wikipedia
跳转到导航 跳转到搜索

此模块的文档可以在Module:Wikidata/Formatters/doc创建

--copy from https://test2.wikipedia.org/s/4h4
local p = {}
 
function p.formatImage( value, options )
    local str = '[[Image:' .. value .. '|thumb'
    if options.legend then
        str = str .. '|' .. options.legend
    end
    return str .. ']]'
end
 
return p