Markdown for link to an image in a tagged [folder]?
When I want to link manually to an image in a tagged [folder] like so
![This is the linktext]([folder]/image_01.jpg)(tagged/folder)
HTML doesn't work properly anymory, most likely due to the additional brackets around the folder name. Is there a way in markdown to "escape" the brackets in the image URL?
Yes, you can use a backslash to escape the character:
![This is the linktext](\[folder\]/image_01.jpg)(tagged/folder)
Answered 10 months ago ยท
Edit answer