linemd 0.5.0

A simple and opinionated markdown parser (and renderer) written in Rust.
Documentation
<h1>Header</h1>
<ul>
<li>List</li>
<li>Listing</li>
<li>Listed</li>
</ul>

<ul>
<li>List <i>list</i> <b>list</b></li>
<li>Listing <code>*code</code> <i>asdfasdf</i></li>
<li>Listed</li>
</ul>

<ul>
<li>List</li>
<li>Listing</li>
<li>Listed</li>
</ul>

<ol>
<li value="1">List</li>
<li value="2">Listing</li>
<li value="3">Listed</li>
</ol>

<h2>Another header i guess</h2>
<p>This is a very good library, see benchmarks on <a href="https://example.org">https://example.org</a>.
What <i>if</i> <b>everyone</b> used <b><i>this</i></b> library? I think that would be pretty cool.</p>

<p>Well, maybe they shouldn't since it is a <code>naive</code> implementation.</p>

<pre><code>let mut result = 0;
result = 2 + 2;
</code></pre>