Open
Description
Zola (static site generator) uses a [name](@/path/to/file.md)
syntax to resolve links (e.g. [blog](@/blog/_index.md)
will resolve to href="/blog/"
once compiled, and it points to the blog/_index.md
file).
By stripping the @/
prefix from the link (option in config.toml
ideally) this could be supported, otherwise you just get a warning Link to non-existent document '@/blog/_index.md'
.
My suggestion is to add a strip_link_prefix
™️ option to the configuration, this could be a single string or a list? (maybe someone needs this?), and before checking if the link is valid, this prefix would be stripped from it.