mdiep/MMMarkdown

Failure to convert blockquotes

albertbori opened this issue · 2 comments

The snippet:

This is a format thing.

> Test quote

**Cool.**

Displays as:

This is a format thing.

Test quote

Cool.

Should display as:

This is a format thing.

Test quote

Cool.

Sample screenshot from device:

screen shot 2015-10-21 at 11 40 35 am

mdiep commented

I see this output, which looks correct:

<p>This is a format thing.</p>
<blockquote>
<p>Test quote</p>
</blockquote>
<p><strong>Cool.</strong></p>