Module:request category page list

Hello, you have come here looking for the meaning of the word Module:request category page list. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:request category page list, but we will also tell you about its etymology, its characteristics and you will know how to say Module:request category page list in singular and plural. Everything you need to know about the word Module:request category page list you have here. The definition of the word Module:request category page list will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:request category page list, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local export = {}

function export.show(frame)
	local labels = {}
	local items = {}

	labels = {
		box_title = "Tagged RFCs",
		top_category = "Requests for cleanup by language",
	}

	labels = {
		box_title = "Tagged RFDs",
		top_category = "Requests for deletion by language",
	}

	labels = {
		box_title = "Tagged RFVs",
		top_category = "Requests for verification by language",
	}

	local arguments = frame:getParent().args
	local current_label = arguments

	for key, value in pairs(labels) do
		items = value
	end
	
	-- Top div has the class tagged-rfcs, tagged-rfds, or tagged-rfvs.
	local class_name = items.box_title:lower():gsub(" ", "-")
	local full_text_top=('<div class="%s" style="float: right; background: var(--wikt-palette-paleblue,#F8F9FA); color: var(--wikt-palette-black,#000);">'
		.. '<div id="%s-header" style="background: var(--wikt-palette-lightergrey,#EEEEEE) color: var(--wikt-palette-black,#000); text-align: center; font-size: 1em; font-weight: bold;">%s</div>')
		:format(class_name, class_name, items.box_title)
	local full_text_bottom="</div>"

	local categorytree = frame:callParserFunction{
		name = "#categorytree",
		args = {
			items.top_category,
			depth = 1,
			mode = "pages",
			showcount = "on"
		}
	}

	return full_text_top .. categorytree .. full_text_bottom
end

return export