-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blockquote termination edge-case #60
Comments
This is a commonmark.js bug. Note that, again, cmark parses this correctly. |
jgm
added a commit
to commonmark/commonmark-spec
that referenced
this issue
Jul 26, 2015
xxgreg
pushed a commit
to xxgreg/commonmark.js
that referenced
this issue
Sep 14, 2015
[dimple] add package
zudov
added a commit
to zudov/haskell-comark
that referenced
this issue
Aug 8, 2016
Relevant entry of the changelog: > [0.22] > > * Added test case clarifying laziness in block quotes (see commonmark/commonmark.js#60).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The spec says, “An indented code block cannot interrupt a paragraph.”
So this looks right:
But a list can:
The trouble comes when the thing after the blockquote looks like this:
It terminates a blockquote saying “hey, I'm a list”, but is parsed as a code block afterwards.
Imho, it should be parsed like a paragraph continuation after all:
The text was updated successfully, but these errors were encountered: