Summary
Atlassian products, such as JIRA have their own plain text format that also supports tables. It is similar to markdown tables but it uses a different notation for heading columns.
It is possible to tweak the settings and generate a table in this format, but additional settings are needed for a header row or column.
Settings already available
- Characters: ASCII
- Horizontal Top Border: None
- Horizontal Inner Header Border: None
- Horizontal Inner Border: None
- Horizontal Bottom Border: None
- Vertical Left Border: Single
- Vertical Inner Header Border: Single
- Vertical Inner Border: Single
- Vertical Right Border: Single
Examples
No headers
Text
| Alice | 26 |
| Bob | 54 |
Produces
Note: markdown doesn't support tables without a header, please ignore the empty header row.
Header row
Text
|| Name || Age ||
| Alice | 26 |
| Bob | 54 |
Produces
Header column
Text
|| 1 | Alice | 26 |
|| 2 | Bob | 54 |
Produces
Note: markdown doesn't support tables without a header, please ignore the empty header row.
Header row and column
Text
|| Id || Name || Age ||
|| 1 | Alice | 26 |
|| 2 | Bob | 54 |
Produces
| Id |
Name |
Age |
| 1 |
Alice |
26 |
| 2 |
Bob |
54 |
Summary
Atlassian products, such as JIRA have their own plain text format that also supports tables. It is similar to markdown tables but it uses a different notation for heading columns.
It is possible to tweak the settings and generate a table in this format, but additional settings are needed for a header row or column.
Settings already available
Examples
No headers
Text
Produces
Note: markdown doesn't support tables without a header, please ignore the empty header row.
Header row
Text
Produces
Header column
Text
Produces
Note: markdown doesn't support tables without a header, please ignore the empty header row.
Header row and column
Text
Produces