5.4. Sizing Columns


5.4.1. Dynamic Sizing

SDF supports dynamic column widths for paper documentation, i.e. if a width is not specified for a column, then the column is sized based on the text within it and the space available. As a result, it is rarely necessary to explicitly size columns.


5.4.2. The format Attribute

The format attribute of the table filter is used to specify column widths for paper documentation. Its value is either:

For example, to specify 3 columns with widths of 20%, 10% and 30% respectively:

!block table; format=213
Name   Age Address
Bill   42  123 Main Road
Joe    21  456 Queen Street
!endblock

The result is:

Name Age Address
Bill 42 123 Main Road
Joe 21 456 Queen Street


Note: The format parameter has no impact on HTML generation - all columns in HTML are currently dynamically sized.


5.4.3. Column Width Specifications

Examples of the column width specifications supported are given below.

Value Meaning
30pt an exact size (other supported units are cm, mm, " and in)
30% a percentage of the size available
30 a percentage of the size available (% is implicit)
10-20 dynamic size between 10% and 20% of the total width
-20 dynamic size between 0% and 20% of the total width
10- dynamic size between 10% and 100% of the total width
- dynamic size between 0% and 100% of the total width
3* 3 units of the remaining space
* same as 1*

For example, in the table below, the second column will be twice the size of the last column.

!block  table; format="20,2*,10,*"
Name    Column2             Column3     Column4
A       B                   C           D
X       Hello dear world    Y           Z
!endblock

The output is:

Name Column2 Column3 Column4
A B C D
X Hello dear world Y Z

5.4.4. Default Sizing Rules and Narrow Tables

If a column is not given a size, the following rules are used:

  1. The last unspecified column size is implicitly '*' (i.e. the rest), unless the narrow attribute is set, in which case the size is implicitly '-' (i.e. as much as needed).
  2. The other unknown sizes are implicitly '-'.

For example, the first and third columns in the table below will be dynamically sized. The first column will take as much space as required and the last column will expand so that the table takes the full width of the text area.

!block  table; format=",30,,10"
Name    Column2             Column3     Column4
A       B                   C           D
X       Hello dear world    Y           Z
!endblock

The output is:

Name Column2 Column3 Column4
A B C D
X Hello dear world Y Z

However, in the example below, each column will only take as much space is required, making the table narrower than it would be otherwise.

!block  table; narrow
Name    Column2             Column3     Column4
A       B                   C           D
X       Hello dear world    Y           Z
!endblock

The output is:

Name Column2 Column3 Column4
A B C D
X Hello dear world Y Z

5.4.5. Equalised Column Widths

If an = character is used in place of a - character for a column width, then those columns will be equalised in size. For example, the second and forth columns in the table below will be made equal in size.

!block  table; format="20,5=30,10,="
Name    Column2             Column3     Column4
A       B                   C           D
X       Hello dear world    Y           Z
!endblock

The output is:

Name Column2 Column3 Column4
A B C D
X Hello dear world Y Z