AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Proxy /docs through Cloudflare Workers
Use a Cloudflare Worker to proxy /docs and /_docs paths on your domain to a Blode.md site, keeping marketing pages on your apex or subdomain.
Use a Cloudflare Worker to proxy any path under /docs to your Blode.md site.
Works with apex domains and subdomains.
Worker script
const TARGET = "https://acme.blode.md";
export default {
async fetch(request) {
const url = new URL(request.url);
// Shared CSS, JavaScript and fonts live at the root of your domain rather