Documentation - Tables

Tables Creation

How to create tables

Creating a Table

To create tables with markdown we need to read the documentation of markdown. Here's a link with the full documentation => Markdown-guide

And here an example of a implemented table


To create a simple table headers with header, two columns and two rows you just need to write it like this:

| **Syntax** | **Description** |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

- and the result is this:

SyntaxDescription

Header

Title

Paragraph

Text

-

To have different alignments you have to add ":" to the left, right, or on both side of the hyphens within the header row. Here's an example:

| **This is a title 1** | **This is a title 2** | **This is a title 3** |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |

-

and the result is this:

-

This is a titleThis is a title 2This is a title 3

Header

Title

Here's this

Paragraph

Text

And more

-

To add colours and styles it is necessary to make a request to landings team in order to add custom styles.