Comment Formatting
- Comments may be formatted with Markdown.
- Syntax highlighting is available (see below).
- Errors will be shown after your comment, so please check with preview.
- HTML code is filtered out for security reasons.
Emphasis
_italic_ __bold__ or *italic* **bold**
Links
[Link text](http://example.com)
Lists
1. Lines with beginning cardinal numbers will turn into ordered lists.
2. This is the second item.
* Lines with beginning stars will turn into unordered lists.
* This is the second item.
Block quotes
> Lines with beginning brackets will turn into block quotes.
> Block quotes may be nested.
Code blocks
Code blocks are indented with 4 spaces and surrounded by blank lines:
$ git commit -m "added markdown help"
Syntax highlighting
Following languages are supported:
c, diff, javascript, scheme, css, html, xml, java, json, rhtml, yaml, delphi.
You have to declare the language like this:
@@ruby
def method_missing(id, *args, &block)
puts "#{id} was called with #{args.inspect}"
end