Can I custom the content folder to another folder instead of content
.
I want internal link works for both local editors and Zola.
if Zola allowed me to specify the content folder, then I can specify the content folder to @
, then both the local editor and Zola will work well.
├── config.toml
├── @
├── sass
├── static
├── templates
└── themes
In config.toml
content_dir = "@"
Example markdown file:
[tools](@/tools.md)
Alternative:
Treat content/xxx.md
as @/xxx.md
, so the following link will work well both local and Zola.
[post1](content/post1.md)
This can change quickly. I have also tested this feature, treat markdown internal link content/ as @/ · theowenyoung/zola@b0b463a (github.com) , it works well.
Internal Link is the most painful for me on Zola. I don’t want to bind Zola deeply, this will let Zola become the only service to understand my plain document.
I like Zola in everything, it’s a thoughtful framework.