Module:Entity
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Entity/doc
local p = {} -- p stands for package
function p.get( frame )
return mw.wikibase.getEntityIdForTitle(mw.title.getCurrentTitle().text)
end
function p.getUrl ( frame )
return mw.wikibase.getEntityUrl(mw.wikibase.getEntityIdForTitle(mw.title.getCurrentTitle().text))
end
return p