Hey,
I’m editing Markdown files directly with Visual Studio Code with the drag and drop ability to add images to markdown. You can see more about it here: Visual Studio Code May 2023
I added a custom file path rule into my VS Code config $PROJECT/.vscode/settings.json
:
"markdown.copyFiles.destination": {
"**/*": "${documentWorkspaceFolder}/assets/images/${documentBaseName}/"
},
It then creates the the following addition into my markdown:
![Alt text](../../assets/images/hello-world/Screenshot.png)
How can I make these default relative paths work in the markdown content generated by Zola?
Is there a way for me to for example automatically remove the ../.../assets/
prefix from the urls?