quantizor / markdown-to-jsx

🏭 The most lightweight, customizable React markdown component.
https://markdown-to-jsx.quantizor.dev/
MIT License
1.96k stars 169 forks source link

fix: multi-line emphasis #550

Closed austingreco closed 5 months ago

austingreco commented 5 months ago

Multi-line bolded/italic wasn't rendering properly -- the regex didn't allow a newline. Added an option for a newline character in the bold/italic regexes.

Input

**multi line
bold text**

Output before fix (nothing is bolded, asterisks remain on second line)

multi line bold text**

Output after fix (both lines bold)

multi line bold text

Fixes #449