jrblevin/markdown-mode

[filelink](does not support spaces in filename)

peteg opened this issue · 3 comments

peteg commented

Expected Behavior

If I try to visit [filelink](filename with spaces in it) I'm taken to filename. Is this a bug or is there a syntax for making filenames atomic?

This is for markdown-mode 20230830.1338 on macOS 13/14.

syohex commented

[filelink](filename with spaces in it) means <a href="filename" title="with spaces in it">filelink</a>. You should enclose the link that contains space with angle brackets link [filelink](<filename with spaces in it>). However markdown-mode.el does not support its syntax, and I fixed the code at #801. How about it ?

peteg commented

thanks for the pointer @syohex.

syohex commented

I have merged #801. Please check latest version.