Releases: quantizor/markdown-to-jsx
Releases · quantizor/markdown-to-jsx
6.8.0
- fix #206 (horizontal rules not working after a list)
- fix #221 (forwardRef support)
- handle named character entities (
, etc.)
- optimization in the text regex to do a bit less work
- running babel-minify over the transpiled files to save some bytes
6.7.4
fix #214 - Nested paragraphs not work correctly inside arbitrary html (#215)
6.7.3
Fix some overly aggressive newline trimming inside HTML blocks
6.7.2
3987668 fix false positive flagging of standalone autolinks as self-closing html (originally reported in #208)
6.7.1
Refactored some parts of the library to make block detection inside arbitrary HTML more reliable. Also tweaked a few detector regexes to avoid edge cases.
6.6.9
c1fe1eb fix a perf issue in the new bold and emphasis regexes (see #190)
6.6.8
Various improvements to inline syntax handling (strong, emphasis, strikethrough primarily.)
b33d327 fix inline syntax outer-boundary false positive match
48ee7f1 ensure emphasis + bold regexes track the specific syntax used
6.6.7
This patch release revises some behavior for handling block syntax inside HTML in MD. It also documents the current "gotchas" in a more public place.
a2b9bfe document the significant whitespace gotchas for arbitrary HTML
4ec60f2 fix regression where we were over-stripping whitespace
d06b191 fix detection of fenced code blocks inside arbitrary HTML