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:48, 16 February 2021. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local mTableTools = require('Module:TableTools')

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 .. "<div class=plainlist><ul><li>[[d:Property:" .. p_num .. "|" .. label .. "]] <span style='font-size:90%;'>([[d:Property talk:" .. string.upper(p_num) .. "|" .. p_num .. "]])</span></li></ul></div>"
			ii = ii + 1
		else break
		end
	end
	return result
end

return p