showdownjs / showdown

A bidirectional Markdown to HTML to Markdown converter written in Javascript
http://www.showdownjs.com/
MIT License
14.26k stars 1.56k forks source link

Underscores inside bold should not render as italic #808

Open bburtin opened 4 years ago

bburtin commented 4 years ago
$ cat test.md  
**MY_ENVIRONMENT_VARIABLE**
$ cat test.html
<p><strong>MY<em>ENVIRONMENT</em>VARIABLE</strong></p>

GitHub and GitLab render this as MY_ENVIRONMENT_VARIABLE, but showdown renders "ENVIRONMENT" as italic.