vmg / sundown

Standards compliant, fast, secure markdown processing library in C
1.99k stars 385 forks source link

Strong emphasis code spans parse error #146

Open ptpt opened 11 years ago

ptpt commented 11 years ago

This happens when I parse strong emphasized code spans.

For example, parse:

**`hello`** *`world`*

sundown's output is:

<p>*<em><code>hello</code>** *<code>world</code></em></p>

But the expected output should be:

<p><strong><code>hello</code></strong> <em><code>world</code></em></p>
mildsunrise commented 9 years ago

This bug has been fixed in Hoedown.