The

ootstrap

shortcode documentation


Normal markdown tables look a bit boring:

| Id  | Name    | Age |
| --- | ---     | --- |
| 1   | Alice   | 42  |
| 2   | Bob     | 69  |
| 3   | Charlie | 1   |

Resulting in:

IdNameAge
1Alice42
2Bob69
3Charlie1

Bootstrap tables

Bootstrap tables are embedded inside a shortcode: {{< table >}} and {{</ table >}}.

Here is an example with the corresponding output:

{{< table striped hover >}}
| Id  | Name    | Age |
| --- | ---     | --- |
| 1   | Alice   | 42  |
| 2   | Bob     | 69  |
| 3   | Charlie | 1   |
{{</ table >}}
IdNameAge
1Alice42
2Bob69
3Charlie1

As you can see, the table block can take additional arguments. The following optional arguments are supported:

For more information about bootstrap tables, please visit their documentation