You can spice up your comment with a sub-set of Markdown:
Span elements:
| Output |
Markup |
| Link to example |
[Link to example](http://www.example.com) |
| Bold text |
**Bold text** |
| Italic text |
_Italic text_ |
Inline code span |
`Inline code span` |
Blockquote:
> Every paragraph starts with a >.
> This is a new line.
Becomes:
Every paragraph starts with a >.
This is a new line.
Code block:
Generic code block. Indent lines with 4 spaces.
Becomes:
Generic code block. Indent lines with 4 spaces.
PHP code block:
{{code:php
// Indent lines with 4 spaces
echo 'PHP code block with open/close tags.';
}}
Becomes:
<?php
// Indent lines with 4 spaces
echo 'PHP code block with open/close tags.';
?>