copy-down icon indicating copy to clipboard operation
copy-down copied to clipboard

Don't escape _ if it's in the middle of a word

Open TranquilMarmot opened this issue 2 years ago • 0 comments

https://www.markdownguide.org/basic-syntax#italic-best-practices

For example, if you were to input the following Markdown:

_A_cat_meow_

The expected output would be:

<em>A_cat_meow</em>

But instead it is:

<em>A\_cat\_meow</em>

TranquilMarmot avatar Feb 28 '23 17:02 TranquilMarmot