This commit is contained in:
clente 2024-09-03 14:52:37 +00:00
parent 5128a3026a
commit 5b4da1927a
31 changed files with 237 additions and 243 deletions

View file

@ -25,39 +25,39 @@
<h2 id="tables">Tables</h2>
<p>Tables aren&rsquo;t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.</p>
<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>
<thead>
<tr>
<th style="text-align: left">Name</th>
<th style="text-align: left">Age</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left">Bob</td>
<td style="text-align: left">27</td>
</tr>
<tr>
<td style="text-align: left">Alice</td>
<td style="text-align: left">23</td>
</tr>
</tbody>
</table>
<h4 id="inline-markdown-within-tables">Inline Markdown within tables</h4>
<table>
<thead>
<tr>
<th>Italics</th>
<th>Bold</th>
<th>Code</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>italics</em></td>
<td><strong>bold</strong></td>
<td><code>code</code></td>
</tr>
</tbody>
<thead>
<tr>
<th style="text-align: left">Italics</th>
<th style="text-align: left">Bold</th>
<th style="text-align: left">Code</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left"><em>italics</em></td>
<td style="text-align: left"><strong>bold</strong></td>
<td style="text-align: left"><code>code</code></td>
</tr>
</tbody>
</table>
<h2 id="code-blocks">Code Blocks</h2>
<h4 id="code-block-with-backticks">Code block with backticks</h4>