Skip to content

Support for Atlassian-style tables #5

@tiborbaksa

Description

@tiborbaksa

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.

Alice 26
Bob 54

Header row

Text

|| Name  || Age ||
|  Alice |  26  |
|  Bob   |  54  |

Produces

Name Age
Alice 26
Bob 54

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.

1 Alice 26
2 Bob 54

Header row and column

Text

|| Id || Name  || Age ||
|| 1  |  Alice |  26  |
|| 2  |  Bob   |  54  |

Produces

Id Name Age
1 Alice 26
2 Bob 54

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions