Jump to content

Module:Sandbox/MSGJ

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by MSGJ (talk | contribs) at 20:14, 6 March 2024. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
require('strict')
local p = {}

p.main = function()
	local title =  mw.title.new('Ariovistus')
	local classmask = require('Module:WikiProject banner').class_mask
	local class = classmask('', title.talkPageTitle, false)
	return class==nil and 'nil' or class
end

return p