-
Notifications
You must be signed in to change notification settings - Fork 526
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
Cannot handle ( ) within link URLs #237
Comments
[bash](http://example.com/bash_(1\)) |
Kramdown correctly parses nested |
After a bit of investigating, I've found that here in markdown.c, Redcarpet considers the first found parenthesis as link's end. I will try to fix this soon! Thanks for reporting. |
Make sure that parenthesis inside the link's url are correctly parsed Redcarpet considered the first ")" occurrence as the link's end so we first count the number of open "(" and decrement this number each time we found a ")". Close issue #237
I'm closing this since #258 has been merge ; I don't know why it hasn't been automagically closed when the PR has been merge...Sorry for the delay by the way. |
I noticed that redcarpet cannot handle nested
( )
within the URL part of links.Produces:
The text was updated successfully, but these errors were encountered: