Table

Basic table

{{< table >}}
| Syntax      | Description |
| ----------- | ----------- |
| Header      | Title       |
| Paragraph   | Text        |
{{< /table >}}
{{< table >}}
| Syntax | Description |
| --- | ----------- |
| Header | Title |
| Paragraph | Text |
{{< /table >}}

Both versions result in the following table

SyntaxDescription
HeaderTitle
ParagraphText

Theme

The default theme for the table is white/lightblue. You can set the theme: this will result in a different table head color.

yellow
{{< table theme=“yellow” >}}
SyntaxDescription
HeaderTitle
ParagraphText

Alignment in table

It is also possible to set the alignment of each column

{{< table >}}
| Syntax      | Description | Test Text     |
| :---        |    :----:   |          ---: |
| Header      | Title       | Here's this   |
| Paragraph   | Text        | And more      |
{{< /table >}}
SyntaxDescriptionTest Text
HeaderTitleHere’s this
ParagraphTextAnd more