Jump to content

Module:Sandbox/Zyxw/test

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Zyxw (talk | contribs) at 19:12, 12 June 2018 (test). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.main(frame)

	local entity = mw.wikibase.getEntityObject() or {}
	local qid = entity.id or ''
	if qid then
		return ' [[File:Blue pencil.svg |frameless |text-top |10px |alt=Edit this at Wikidata |link=https://www.wikidata.org/wiki/' .. qid .. '#P856|Edit this at Wikidata]]'
	else
		return ''
	end

end

return p