` and `
` if you do not like the Markdown way.
Markdown syntax is still enabled in the span tags.
Markdown syntax in block elements
=================================
The original Markdown syntax does not allow to parse its own symbols inside block HTML tags. However, the parser has been extended with a special option which turns on the parsing on demand. You must add a special HTML attribute `markdown` whose value is `1`:
~~~
This *Markdown text* is still parsed! Yeah!
~~~
#### The result:
~~~
This Markdown text is still parsed! Yeah!
~~~
The parser recognizes various tag types. For example, if you turn on the syntax for ``, only the span elements will be formatted, and the lists or quote blocks will remain unparsed. In some cases this may lead to problems:
~~~