mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
a4f05d4693
The way showdown parsed cases suchs as this: ``` **foo **bar __foo __bar *foo *bar _foo _bar ``` was inconsistent. This established that `__` or `**` preceeding a word would not be parsed as em or strong. Closes #332
16 lines
461 B
HTML
16 lines
461 B
HTML
<p>foo *bar *baz</p>
|
|
<p>foo **bar **baz</p>
|
|
<p>foo _bar _baz</p>
|
|
<p>foo __bar __baz</p>
|
|
<p>foo *bar *baz *bazinga</p>
|
|
<p>foo **bar **baz **bazinga</p>
|
|
<p>foo _bar _baz __bazinga</p>
|
|
<p>foo __bar __baz __bazinga</p>
|
|
<p><em>f</em></p>
|
|
<p><strong>f</strong></p>
|
|
<p><em>f</em></p>
|
|
<p><strong>f</strong></p>
|
|
<p>foo **bar **baz <strong>bazinga bla</strong></p>
|
|
<p>foo <strong>bar **baz **bazinga bla</strong></p>
|
|
<p>foo <strong>**bar **baz **bazinga bla</strong></p>
|