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
foo
With strikethrough turned on I see the following:
~`foo`~ // does not wrap foo in <code></code> ~*foo*~ // does not wrap foo in <em></em> ~ `foo`~ // works fine ~ *foo*~ // works fine
Looking at the code, the issue seems to be in md_collect_marks the strikethrough if block does not end in a continue
md_collect_marks
continue
The text was updated successfully, but these errors were encountered:
Confirmed the bug as well as its culprit. Thank you.
For the sake of completeness, if nested in the inverse manner, the problem is there too:
*~foo~*
The only difference is it breaks when handling the closer mark in md_collect_marks().
md_collect_marks()
Sorry, something went wrong.
b858698
md_collect_mark: Add missing 'continue' to '~' branch.
34b4f64
Fixes mity#69.
No branches or pull requests
With strikethrough turned on I see the following:
Looking at the code, the issue seems to be in
md_collect_marks
the strikethrough if block does not end in acontinue
The text was updated successfully, but these errors were encountered: