We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
The fix for issue #14 works pretty well most of the time but it fails on special case of links with underscores in it. For example:
_Follow me on [Twitter](https://twitter.com/address_with_underscore)._
Should be rendered as:
<p><em>Follow me on <a href="https://twitter.com/address_with_underscore">Twitter</a>.</em></p>
but instead it is rendered as:
<p><em>Follow me on [Twitter](<a href="https://twitter.com/address">https://twitter.com/address</a></em>with<em>underscore).</em></p>
The text was updated successfully, but these errors were encountered:
Actually, the issue seems to affect any tags nested in "Emphasis" tag.
_Some **Text**._
is rendered as:
<p><em>Some **Text**.</em></p>
instead of:
<p><em>Some <strong>Text</strong>.</em></p>
Sorry, something went wrong.
No branches or pull requests
Hello,
The fix for issue #14 works pretty well most of the time but it fails on special case of links with underscores in it. For example:
Should be rendered as:
but instead it is rendered as:
The text was updated successfully, but these errors were encountered: