Difference between revisions of "Module:Tracks and uses Wikidata"

From DAS Wiki
en>Pppery
(Removing unattributed copy of Module:Lua banner])
 
m (1 revision imported)
 
(No difference)

Latest revision as of 13:52, April 10, 2021

Documentation for this module may be created at Module:Tracks and uses Wikidata/doc

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