From Wikipedia, the free encyclopedia
local p = {}
function p.subscribeToAllAspects(frame)
-- wikidata sandbox QID for testing
local qid = 'Q4115189'
local entity = mw.wikibase.getEntity ( qid );
if entity then
-- return '[[' .. entity:getSitelink( ) .. ']]'
return '[[' .. mw.wikibase.addDescriptionUsage( qid ) .. ']]'
end
end
return p