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
Clicking on a link in the form ![Text](url(par).png "label") should find-file on url(par).png.
![Text](url(par).png "label")
find-file
url(par).png
Clicking on that link instead creates a new file named url(par).png "label"
url(par).png "label"
The issue seems to be markdown-link-at-pos which is confused by parentheses within the url.
(nth 3 (markdown-link-at-pos (point)))
#("url(par).png \"label\"" 0 3 (face [... a variety of face information I'm omitting.]))
The text was updated successfully, but these errors were encountered:
I have merged #763. Please check latest version.
Sorry, something went wrong.
Fixed! Thank you very much, @syohex
No branches or pull requests
Expected Behavior
Clicking on a link in the form
![Text](url(par).png "label")
shouldfind-file
onurl(par).png
.Actual Behavior
Clicking on that link instead creates a new file named
url(par).png "label"
Steps to Reproduce
The issue seems to be markdown-link-at-pos which is confused by parentheses within the url.
![Text](url(par).png "label")
, then(nth 3 (markdown-link-at-pos (point)))
. This returns:Software Versions
The text was updated successfully, but these errors were encountered: