Lompat ke isi

Modul:Wikidata/Formatters

Dari Wikipedia bahasa Indonesia, ensiklopedia bebas

local p = {}

function p.formatImage( value, options )
    local str = '[[Berkas:' .. value .. '|thumb'
    if options.legend then
        str = str .. '|' .. options.legend
    end
    return str .. ']]'
end

return p