Jump to content

Module:Sandbox/Ahecht

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ahecht (talk | contribs) at 15:18, 13 February 2018 (create). 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

local Autotaxobox = require( "Module:Autotaxobox" )

function p.main(frame)
	local output = '{<br />'
	for k,v in pairs (Autotaxobox.getRankTable()) do
		output = output .. '{{Anglicise rank|' .. k .. '}} = ' .. v .. ',<br />'
	end
	return output .. '}'
end

return p