Module:Character Infobox
From NOISZ Wiki
This module is intended to create infoboxes on character pages, using Capiunto's infobox capabilities.
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