From bbd3d3be3f08351be1d2b3131e6f022ca2ec0774 Mon Sep 17 00:00:00 2001 From: Hamid FzM Date: Sun, 16 Aug 2026 07:51:38 -0400 Subject: [PATCH] docs: point the docs-site links at pages that exist The three deep links into glyph-md.github.io/plugins dropped the .html extension, so all of them 404'd; only the bare site root resolved. The exported pages are .html at the site root. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88e0316..608907f 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Try it in Glyph: command palette → **Manage Plugins…** → **Install from fo ## The API -Everything lives in the **[plugin docs](https://glyph-md.github.io/plugins/)**: [Getting Started](https://glyph-md.github.io/plugins/getting-started), [Recipes](https://glyph-md.github.io/plugins/recipes), and the full [API Reference](https://glyph-md.github.io/plugins/api-reference), including the sandbox model (plugins run in an isolated worker by default; `"sandbox": false` needs a user-approved full-access grant). `src/main.ts` is a working sample of the surface, typed via [`types/glyph.d.ts`](types/glyph.d.ts). +Everything lives in the **[plugin docs](https://glyph-md.github.io/plugins/)**: [Getting Started](https://glyph-md.github.io/plugins/getting-started.html), [Recipes](https://glyph-md.github.io/plugins/recipes.html), and the full [API Reference](https://glyph-md.github.io/plugins/api-reference.html), including the sandbox model (plugins run in an isolated worker by default; `"sandbox": false` needs a user-approved full-access grant). `src/main.ts` is a working sample of the surface, typed via [`types/glyph.d.ts`](types/glyph.d.ts). Don't bundle React or Glyph internals; the host provides what you need through `ctx`.