Jump to content

Module:Tracks and uses Wikidata/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jay D. Easy (talk | contribs) at 22:35, 16 February 2021 (Created page with 'local p = {} function p.tuProperty(frame) local parent = frame.getParent(frame) local result = '' local ii = 1 while true do local p_num = mw.text.trim(pa...'). 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.tuProperty(frame)
	local parent = frame.getParent(frame)
	local result = ''
	local ii = 1
	while true do
		local p_num = mw.text.trim(parent.args[ii] or '')
		if p_num ~= '' then
			local label = mw.wikibase.label(p_num) or "NO LABEL"
			result = result .. "<ul><li><span style='font-size:90%;line-height:1;'>●</span>&nbsp;&nbsp;[[d:Property:" .. p_num .. "|" .. label .. "]] <span style='font-size:90%;'>([[d:Property talk:" .. string.upper(p_num) .. "|" .. p_num .. "]])</span></li></ul>"
			ii = ii + 1
		else break
		end
	end
	return result
end

return p