Module:WikidataTable

De Wikiromandie.org
Aller à la navigation Aller à la recherche

La documentation pour ce module peut être créée à Module:WikidataTable/doc

function p.render(frame)
    local sparql = frame.args.sparql or ""
    local title  = frame.args.title  or ""

    if sparql == "" then
        return "⚠️ No SPARQL query provided."
    end

    return '<div class="wikidata-sparql-table"'
        .. ' data-sparql="' .. mw.text.nowiki(sparql) .. '"'
        .. ' data-title="' .. mw.text.nowiki(title) .. '">'
        .. '</div>'
end