Module:Character Infobox
From NOISZ Wiki
Documentation for this module may be created at Module:Character Infobox/doc
if args.eye_colour or args.hair_colour or args.height then
infobox:addHeader( 'Physical' )
for _, row in ipairs(physical) do
local label, value = row[1], row[2]
if value then
infobox:addRow(label, value)
end
end
end