php-markdown icon indicating copy to clipboard operation
php-markdown copied to clipboard

Mixed emphasis markers

Open michelf opened this issue 10 years ago • 0 comments

Input:

 **This** *works*

 **This_doesn't** *work*

Output:

(https://michelf.ca/projects/php-markdown/dingus/)

<p><strong>This</strong> <em>works</em></p>

<p><strong>This_doesn't</strong> *work*</p>

Expected:

(http://daringfireball.net/projects/markdown/dingus)

<p><strong>This</strong> <em>works</em></p>

<p><strong>This_doesn't</strong> <em>work</em></p>

michelf avatar Jul 08 '14 15:07 michelf