Content initialized. GenesysRef is ready to use!
Homebrew Helper
?
{
      "type": "table",
      "title": "Demo Table",
      "subtitle": "This is for demo purposes only.",
      "foot": "You can have footer information too.",
      "columns": [
            {
                  "header": "Name",
                  "size": 4
            },
            {
                  "header": "Favorite Color",
                  "value": "color",
                  "size": 3
            },
            {
                  "header": "Age"
            }
      ],
      "rows": [
            {
                  "subtitle": "Males"
            },
            {
                  "name": "Bill",
                  "color": "green",
                  "age": 50
            },
            {
                  "subtitle": "Females"
            },
            {
                  "name": "Sally",
                  "color": "blue",
                  "age": 48
            },
            {
                  "name": "Margret",
                  "color": "red",
                  "age": 31
            }
      ]
}
{
      "type": "table",
      "columns": [],
      "rows": [],
      "_ref": {
            "name": "Table I.5-4: Repairing Gear"
      }
}
Property
Data Type
Description
type*
string
Must be table.
title
string
Table title.
subtitle
string
Subtitle. Displays between the title and the table.
foot
string
Footer. Displays after the table.
columns*
array of column objects, see below
Column descriptions.
rows*
array of row objects, see below
Row descriptions.
_ref
Reference to pre-existing table.
Property
Data Type
Description
header*
string
The column header/title.
value
string
The row property to display. This is not required if the column header matches a row property (case-insensitive).
size
integer
Width of the column, relative to the other columns. Default value is 1.
Property
Data Type
Description
subtitle
string
Creates a subtitle that spans the table, displaying the given value.
?
string
For all other rows, each row should have properties that match each of the column's values. See the codeblock above as an example. To further explain, the three columns each have a unique value: name, color, age. Each row has each of those properties.