-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Don't convert ellipsis in markdown #9905
Conversation
Signed-off-by: jolheiser <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #9905 +/- ##
==========================================
- Coverage 42.3% 42.28% -0.02%
==========================================
Files 607 608 +1
Lines 79353 79393 +40
==========================================
+ Hits 33571 33574 +3
- Misses 41640 41677 +37
Partials 4142 4142
Continue to review full report at Codecov.
|
Co-Authored-By: zeripath <[email protected]>
Is it the proper fix, though? I mean the bug is not in the ellipsis convertion per se, but rather that ellipsises are converted inside autolinked URLs as well. Maybe that's the only thing we can do for the time being, but I think this warrants creating an upstream bug as well. |
It's not upstream's fault - it's ours. Really we should run this filter after we've detected all the urls - but we do that outside of the markdown renderer. What we need to do is do the link detection from within markdown and only run our link detection on html files. |
@jolheiser Please send backport. |
* Don't convert ellipsis Signed-off-by: jolheiser <[email protected]> * Formatting Co-Authored-By: zeripath <[email protected]> Co-authored-by: Lunny Xiao <[email protected]> Co-authored-by: Antoine GIRARD <[email protected]> Co-authored-by: zeripath <[email protected]>
* Don't convert ellipsis Signed-off-by: jolheiser <[email protected]> * Formatting Co-Authored-By: zeripath <[email protected]> Co-authored-by: Lunny Xiao <[email protected]> Co-authored-by: Antoine GIRARD <[email protected]> Co-authored-by: zeripath <[email protected]> Co-authored-by: Lunny Xiao <[email protected]> Co-authored-by: Antoine GIRARD <[email protected]> Co-authored-by: zeripath <[email protected]>
Fixes #9904