Table formatting alignment in Jira

10,524

Solution 1

Use this format '||' for table headers and '|' for the table rows

||heading 1||heading 2||heading 3||
|col A1|col A2|col A3|
|col B1|col B2|col B3|

Solution 2

To do left aligned, don't do the table headers, instead make them Strong:

|*A*            |  *B*  |   *C*    |
|               |0059|Warranty|
|*OFFER DISPLAY*|OFFER DISPLAY NAME   |Lite|
|               |OFFER DETAILS DISPLAY|  Reconditioned Genie Lite |
|               |AA |$0|
|               |BB |N/A|
|               |CC |N/A|

If you want right aligned, doesn't look like there's a clean way to do it without doing some sort of {noformat} tag type header.

Share:
10,524
Morgan Soren
Author by

Morgan Soren

Updated on June 04, 2022

Comments

  • Morgan Soren
    Morgan Soren almost 2 years

    I have the following table format in Jira:

    ||A            ||  B  ||   C    ||
    ||             || 0059||Warranty||
    ||OFFER DISPLAY||OFFER DISPLAY NAME   |Lite|
    ||             ||OFFER DETAILS DISPLAY|  Reconditioned Genie Lite |
    ||             ||AA |$0|
    ||             ||BB |N/A|
    ||             ||CC |N/A|
    

    I need the row headers "AA", "BB" and "CC" to be aligned to the left. I have checked Text Formatting Notation Help but I haven't seen a way to align table headers.

    Does anybody know how to align headers (in this case, row headers) to either right or left?