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
When two potential emphasis spans overlap, it is not always the first that takes precedence. (Violates rule 15.)
E.g.,
*foo _bar* baz_
is correctly parsed as
<em>foo _bar</em> baz_
but
_bim *foo _bar* baz_
is parsed as
_bim *foo <em>bar* baz</em>
(The first _, even though it is eventually not used for emphasis, still influences which delimiter is tried first.)
_
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When two potential emphasis spans overlap, it is not always the first that takes precedence. (Violates rule 15.)
E.g.,
is correctly parsed as
but
is parsed as
(The first
_
, even though it is eventually not used for emphasis, still influences which delimiter is tried first.)The text was updated successfully, but these errors were encountered: