Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Module documentation[view][edit][history][purge]
This documentation is transcluded from Module:TableUtils/doc. Changes can be proposed in the talk page.
Function list
L 3 — p.unknown

Module:TableUtils provides common functions used when rendering tables using Module:Tables. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly.


local p = {}

function p.unknown()
	return {
		text = 'Unknown',
		attr = { ["data-sort-value"] = 'zzzzzzz' },
		css = {
			["background"] = '#ececec',
			["vertical-align"] = 'middle',
			["text-align"] = 'center'
		},
		class = "unknown table-unknown"
	}
end

return p