Added HTML tables docs section

This commit is contained in:
James Braza 2023-08-17 22:06:28 -07:00
parent 6e0164d0e4
commit 602039814d

View file

@ -50,7 +50,7 @@ The blockquote element represents content that is quoted from another source, op
## Tables
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box.
| Name | Age |
| ----- | --- |
@ -63,6 +63,36 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
| --------- | -------- | ------ |
| _italics_ | **bold** | `code` |
### HTML Tables
Blowfish supports HTML tables, that can be personalized with custom CSS.
{{< alert >}}
Make sure your `markup.toml` has the required contents,
which you can get from the file copy from
[theme config set up]({{< ref "docs/installation#set-up-theme-configuration-files" >}})
docs.
{{< /alert >}}
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bob</td>
<td>27</td>
</tr>
<tr>
<td>Alice</td>
<td>23</td>
</tr>
</tbody>
</table>
## Code Blocks
### Code block with backticks