模組:沙盒/Alexander Misel/Wikidata

文档图示 模块文档[查看] [编辑] [历史] [清除缓存]

local p = {}

function p.desc()
	entity = mw.wikibase.getEntityObject()
	if entity == nil then
		return ''
	end
	id = entity.id
	return entity:getDescription( 'zh' )
end

return p