I'm trying to switch from the Anstosa Markdown plugin to the standard Markdown plugin. One show-stopper is that the standard Markdown plugin is adding <p></p> tags inside list elements. This separates the items in bullet lists with way too much space.
e.g. Markdown content of
* one
* two
* three
Generates HTML of:
--------
<ul>
<li><p>one</p></li>
<li><p>two</p></li>
<li><p>three</p></li>
</ul>
-------
Is there a way to eliminate those specious <p>?
Alternatively, is there a clever way to use CSS to say that <p> elements within <li> add zero spacing to that provided by the <li>?