You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix commonmark/cmark#383. Our optimization for emphasis parsing
was flawed, leading to some corner cases where nested emphasis was
parsed incorrectly.
Allow user to specify a function to escape the output (#217, newfivefour).
Simplify reThematicBreak.
Fix documentation for node.listType (TheWastl). The parser produces
lowercase strings, but the README said the strings are capitalized.
Fix handling of type 7 HTML blocks (#213).
They can't interrupt paragraphs (even with laziness).
Fix link label normalization with backslash before newline (#211).
Only match punctuation at the beginning of the string (Vladimir Pouzanov).
This makes the punctuation use match reUnicodeWhitespaceChar usage
in scanDelims. It's effectively a no-op, as char_after is expected
to only contain a single character anyways.