{% load markup %}
Syntax Output
*emphasis* or _emphasis_ {{ '*emphasis* or _emphasis_'|markdown }}
**strong emphasis** or __strong emphasis__ {{ '**strong emphasis** or __strong emphasis__'|markdown }}
\*escaped markup\* {{ '\*escaped markup\*'|markdown }}
`span of code` {{ '`span of code`'|markdown }}
``There is a literal backtick (`) here.`` {{ '``There is a literal backtick (`) here.``'|markdown }}
<http://bashoneliners.com/> {{ ''|markdown }}
> start lines with
> email-style > characters
> to blockquote a block of text
start lines with
email-style > characters
to blockquote a block of text
* start lines with *
* or with - or with +
* to make them an unordered list
  • start lines with *
  • or with - or with +
  • to make them an unordered list
1. Ordered lists
1. use numbers
1. followed by periods
  1. Ordered lists
  2. use numbers
  3. followed by periods

For more details please refer to the documentation of markdown:
{{ ''|markdown }}