Tag: blog

Fragment link checking in Astro

In my previous post I covered how Zola validates internal links and anchors at build time. As I'm considering migrating my blog to Astro, I needed to solve the same problem: how do I ensure that fragment links (anchors) actually point to existing headings? Here's how I set up fra…

Mastering internal links in zola

When building a static site with Zola, one common issue is discovering broken internal links only after deployment. External links pointing to your own content (like [post](/blog/my-post/)) are treated as external by Zola's link checker, missing valuable validation opportunities.…