Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent behavior of emphasis and strong #332

Closed
tivie opened this issue Jan 29, 2017 · 1 comment
Closed

Inconsistent behavior of emphasis and strong #332

tivie opened this issue Jan 29, 2017 · 1 comment

Comments

@tivie
Copy link
Member

tivie commented Jan 29, 2017

Input

pointer *ptr *thing

​pointer **ptr **thing

something _else _bla

something __else __bla​

Expected results

<p>pointer <em>ptr </em>thing</p>
<p>pointer <strong>ptr </strong>thing</p>
<p>something <em>else </em>bla</p>
<p>something <strong>else </strong>bla​</p>

or this:

<p>pointer *ptr *thing</p>
<p>pointer **ptr **thing</p>
<p>something _else _bla</p>
<p>something __else __bla​</p>

Actual result

<p>pointer *ptr *thing</p>
<p>pointer <em>*ptr *</em>thing</p>
<p>something _else _bla</p>
<p>something <em>_else _</em>bla​</p>
@tivie
Copy link
Member Author

tivie commented Jan 29, 2017

The correct output should be:

<p>pointer *ptr *thing</p>
<p>pointer **ptr **thing</p>
<p>something _else _bla</p>
<p>something __else __bla​</p>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant