模組:Wikidata/Formatters

文档图示 模块文档[创建]
--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