模块:Wikidata/Formatters

来自Local Chinese Wikipedia
imported>Shizhao2013年4月27日 (六) 13:27的版本 建立内容为“--copy from https://test2.wikipedia.org/s/4h4 local p = {} function p.formatImage( value, options ) local str = '[[Image:' .. value .. '|thumb...”的新頁面)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转到导航 跳转到搜索

此模块的文档可以在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