Module:TestWikidata

From TITAF TANGOWIKI
Revision as of 21:09, 20 March 2025 by Donxello (talk | contribs) (Created page with "local p = {} function p.getLabel(frame) local entityId = frame.args[1] or "Q42" -- Defaults to Douglas Adams (Q42) return mw.wikibase.getLabel(entityId) or "Label not found" end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:TestWikidata/doc

local p = {}

function p.getLabel(frame)
    local entityId = frame.args[1] or "Q42"  -- Defaults to Douglas Adams (Q42)
    return mw.wikibase.getLabel(entityId) or "Label not found"
end

return p