mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-05-21 20:21:54 +02:00
Added HTML tables to docs
This commit is contained in:
parent
abd1223edc
commit
41a430d46f
1 changed files with 30 additions and 0 deletions
|
@ -63,6 +63,36 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
||||||
| --------- | -------- | ------ |
|
| --------- | -------- | ------ |
|
||||||
| _italics_ | **bold** | `code` |
|
| _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 Blocks
|
||||||
|
|
||||||
### Code block with backticks
|
### Code block with backticks
|
||||||
|
|
Loading…
Add table
Reference in a new issue