atproto utils for zig zat.dev
atproto sdk zig

fix: don't encode slashes in doc path fetch

encodeURIComponent turns devlog/001-self-publishing-docs.md into
devlog%2F001-self-publishing-docs.md, breaking nested paths

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Changed files
+1 -1
site
+1 -1
site/app.js
··· 139 139 } 140 140 141 141 try { 142 - const md = await fetchText(`./docs/${encodeURIComponent(activePath)}`); 142 + const md = await fetchText(`./docs/${activePath}`); 143 143 const html = globalThis.marked.parse(md); 144 144 contentEl.innerHTML = html; 145 145