Markdown Syntax
Kanboard uses the Markdown syntax for comments and task descriptions.
Bold and Italic
- Bold text: Use 2 asterisks or 2 underscores.
- Italic text: Use 1 asterisk or 1 underscore.
This **word** is very __important__.
And here, an *italic* word with one _underscore_.
Unordered Lists
Unordered lists can use asterisks, minuses, or pluses.
- Item 1
- Item 2
- Item 3
or
* Item 1
* Item 2
* Item 3
Ordered Lists
Ordered lists are prefixed by a number, like this:
1. Do that first
2. Do this
3. And that
Links
[My link title](https://kanboard.org/)
<https://kanboard.org>
Images

or without alternative text:

Source Code
Inline Code
Use a backtick.
Execute this command: `tail -f /var/log/messages`.
Code Blocks
Use 3 backticks, optionally with the language name.
```php
<?php
phpinfo();
?>
```
Titles
# Title Level 1
## Title Level 2
### Title Level 3
Tables
| 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.