Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Character tabs

From Sekaipedia

To generate {{Character tabs}}, invoke using the main function.


local builder = require('Module:Tabview')
local p = {}

function p.main(frame)
	local args = frame.args

	local tabview = builder.new();
	
	tabview:addTab(args[1], 'Main')
	
	return tabview:tostring()
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.