Module:Sandbox/Aude/NRHP

This is an old revision of this page, as edited by Aude (talk | contribs) at 20:00, 14 June 2016 (test). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {}

function p.getNRHPReference(frame)
	local entity = mw.wikibase.getEntityObject()
	
	if entity then
		local snak = entity['claims']['P649'][1]
		return mw.wikibase.renderSnak( snak )
	end
	
	return ''
end