跳转到内容

模組:Wikidata/Formatters

维基百科,自由的百科全书

这是Module:Wikidata/Formatters当前版本,由Shizhao留言 | 贡献编辑于2013年4月27日 (六) 13:27 建立内容为“--copy from https://test2.wikipedia.org/s/4h4 local p = {} function p.formatImage( value, options ) local str = '[[Image:' .. value .. '|thumb...”的新頁面)。这个网址是本页该版本的固定链接。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)
--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