-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
CommonMark blockquote example 221 fails #696
Copy link
Copy link
Closed
Labels
Description
According to commonmark spec
It is a consequence of the Laziness rule that any number of initial >s may be omitted on a continuation line of a nested block quote:
>>> foo
> bar
>>> baz
should be render to (By spec.commonmark.org and github comment system)
<blockquote>
<blockquote>
<blockquote>
<p>foo
bar
baz</p>
</blockquote>
</blockquote>
</blockquote>but current implemention gives:
<blockquote>
<blockquote>
<blockquote>
<p>foo
bar</p>
</blockquote>
<blockquote>
<p>baz</p>
</blockquote>
</blockquote>
</blockquote>Reactions are currently unavailable