mdiep / MMMarkdown

An Objective-C framework for converting Markdown to HTML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failure to convert blockquotes

albertbori opened this issue · 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

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>