Table of Contents
Kanboard use the Markdown syntax for comments or task descriptions.
This **word** is very __important__.
And here, an *italic* word with one _underscore_.
Unordered list can use asterisks, minuses or pluses.
- Item 1
- Item 2
- Item 3
or
* Item 1
* Item 2
* Item 3
Ordered lists are prefixed by a number like that:
1. Do that first
2. Do this
3. And that
[My link title](https://kanboard.org/)
<https://kanboard.org>
Use a backtick.
Execute this command: `tail -f /var/log/messages`.
Use 3 backticks with eventually the language name.
```php
<?php
phpinfo();
?>
```
# Title level 1
## Title level 2
### Title level 3
| Header 1 | Header 2 |
| --------- |--------- |
| a | b |
| c | d |
There must be at least 3 dashes separating each header cell. The outer pipes (|
) are optional, and you don’t need to make the raw Markdown line up prettily.