Inline Formatting
Standard Markdown inline formatting works inside table cells.
Bold and italic
| Style | Example |
| :----------- | :-------------------- |
| Bold | **bold text** |
| Italic | *italic text* |
| Bold+italic | ***bold and italic*** |
| Style | Example |
|---|---|
| Bold | bold text |
| Italic | italic text |
| Bold+italic | bold and italic |
<table>
<thead>
<tr>
<th style="text-align:left">Style</th>
<th style="text-align:left">Example</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">Bold</td>
<td style="text-align:left"><strong>bold text</strong></td>
</tr>
<tr>
<td style="text-align:left">Italic</td>
<td style="text-align:left"><em>italic text</em></td>
</tr>
<tr>
<td style="text-align:left">Bold+italic</td>
<td style="text-align:left"><strong><em>bold and italic</em></strong></td>
</tr>
</tbody>
</table>
Inline code
| Function | Description |
| :------------ | :---------------------------- |
| `help()` | Display the help window. |
| `destroy()` | **Destroy your computer!** |
| `print(x)` | Print *x* to stdout. |
| Function | Description |
|---|---|
help() |
Display the help window. |
destroy() |
Destroy your computer! |
print(x) |
Print x to stdout. |
<table>
<thead>
<tr>
<th style="text-align:left">Function</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left"><code>help()</code></td>
<td style="text-align:left">Display the help window.</td>
</tr>
<tr>
<td style="text-align:left"><code>destroy()</code></td>
<td style="text-align:left"><strong>Destroy your computer!</strong></td>
</tr>
<tr>
<td style="text-align:left"><code>print(x)</code></td>
<td style="text-align:left">Print <em>x</em> to stdout.</td>
</tr>
</tbody>
</table>
Links
| Name | URL |
| :----------- | :----------------------------------- |
| MkDocs | [mkdocs.org](https://www.mkdocs.org) |
| Material | [squidfunk.github.io](https://squidfunk.github.io/mkdocs-material) |
| Name | URL |
|---|---|
| MkDocs | mkdocs.org |
| Material | squidfunk.github.io |
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">URL</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">MkDocs</td>
<td style="text-align:left"><a href="https://www.mkdocs.org">mkdocs.org</a></td>
</tr>
<tr>
<td style="text-align:left">Material</td>
<td style="text-align:left"><a href="https://squidfunk.github.io/mkdocs-material">squidfunk.github.io</a></td>
</tr>
</tbody>
</table>
Mixed
| Name | Signature | Notes |
| :------------ | :--------------------- | :--------------------- |
| `add(a, b)` | `int, int -> int` | Returns **sum** |
| `greet(name)` | `str -> str` | Returns *greeting* |
| Name | Signature | Notes |
|---|---|---|
add(a, b) |
int, int -> int |
Returns sum |
greet(name) |
str -> str |
Returns greeting |
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Signature</th>
<th style="text-align:left">Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left"><code>add(a, b)</code></td>
<td style="text-align:left"><code>int, int -> int</code></td>
<td style="text-align:left">Returns <strong>sum</strong></td>
</tr>
<tr>
<td style="text-align:left"><code>greet(name)</code></td>
<td style="text-align:left"><code>str -> str</code></td>
<td style="text-align:left">Returns <em>greeting</em></td>
</tr>
</tbody>
</table>