A minor bug: if you use <ul> or <ol> tags instead of using Markdown notation for creating lists, links don't work. For example, the input
<ul>
<li> [google](http://google.com) </li>
</ul>
- [google](http://google.com)
<ol>
<li> [google](http://google.com) </li>
</ol>
1. [google](http://google.com)
produces
- [google](http://google.com)
- [google](http://google.com)
<li>tags is actually optional in HTML: w3.org/TR/html4/struct/lists.html#h-10.2 – Greg Hewgill Nov 29 '09 at 23:44