Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix code span wrongly identified as code block
Close mity#201. What happens in mity#201 is that MD4C identifies the first "```" as the start of a fenced code block. Threfore it renders "aaa" and " ```" as code block lines, then it automatically closes the fenced code block at EOF. DETAILS Commonmark spec 0.30 about fenced code blocks. A fenced code block begins with a code fence, preceded by up to three spaces of indentation.[1] A fenced code block may interrupt a paragraph, and does not require a blank line either before or after.[2] - [1] https://github.com/commonmark/commonmark-spec/blob/d5706b9553d4665ca730524323d484880440186c/spec.txt#L1940 - [2] https://github.com/commonmark/commonmark-spec/blob/d5706b9553d4665ca730524323d484880440186c/spec.txt#L1969
- Loading branch information