Open Bug 1145043 Opened 9 years ago

markdown incorrectly parses quoted lines

Categories

(Bugzilla :: Creating/Changing Bugs, defect)

x86
macOS
defect
Not set
normal

Tracking

()

People

(Reporter: glob, Unassigned)

Details

if you have:

> quote
not quote

markdown incorrectly renders both lines as quoted:

<blockquote class="markdown">
  <p>quote<br>
  not quote</p>
</blockquote>

it should be:

<blockquote class="markdown">
  <p>quote</p>
</blockquote>
<p>not quote</p>
You need to log in before you can comment on or make changes to this bug.