How to create tables in Markdown

Prev Next

Plans supporting this feature: Professional Business Enterprise

Tables are an essential tool for organizing and presenting data in a clear, structured format. Whether you're comparing features, listing options, or summarizing information, tables enhance content readability and make complex data easier to understand.

To create tables in the Markdown editor,

  1. Navigate to the desired article in the Knowledge base portal (Markdown editor).

  2. Click the Insert table () icon available in the editor toolbar.

  3. An interactive layout appears, allowing you to drag and select the desired number of rows and columns for your table.

    You can add up to a maximum of 10 columns and 15 rows (10 × 15).

    Image showing tables option in Markdown

  4. To add additional rows or expand columns, move to a new line below the table and enter the cell content using vertical pipes (|) to separate each column. Each new line represents a row, and the number of pipes determines the number of columns.

  5. For example,

    | Basic | Yes | Limited | Like
    | Pro   | Yes | Full    | Dislike

Alternatively, to manually create a table in the Markdown editor,

  1. Insert vertical pipes | and hyphens - in the editor to define the table layout.

  2. Align the text content within the cells using colons :

    • :--- for left

    • :---: for center

    • ---: for right

Sample code

| Column 1 | Column 2 | Column 3 |
|:-------- |:--------:| --------:|
| Left     | Center   | Right    |

Outcome

Image showing tables in Markdown editor