markdown syntax

This commit is contained in:
Greg Weber 2010-09-26 08:20:23 -07:00
parent 49b422619a
commit 3226768a1f

View File

@ -21,7 +21,7 @@ TagSoup is used to parse the HTML, and it does a good job. However TagSoup does
<a href>, <a href>
<a></a>, <a/>
img and br tags will be output as a single self-closing tags. Other self-closing tags will be output as an open and closing pair. So <img /> or <img><img> converts to <img />, and <a></a> or <a/> converts to <a></a>. There are future updates to TagSoup planned to fix these cases.
In the third case, img and br tags will be output as a single self-closing tags. Other self-closing tags will be output as an open and closing pair. So `<img /> or <img><img>` converts to `<img />`, and `<a></a> or <a/>` converts to `<a></a>`. There are future updates to TagSoup planned to fix these cases.
Integration
===========