From 9997ddd8f343b72be4198eee1034f4b6ff35bb67 Mon Sep 17 00:00:00 2001 From: Alain Schlesser Date: Mon, 15 Jun 2026 15:39:13 +0200 Subject: [PATCH] =?UTF-8?q?docs(astro-seo-graph):=20correct=20=20desc?= =?UTF-8?q?ription=20=E2=80=94=20renders=20head=20directly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "What you get" table still said `` "Wraps astro-seo for the meta tags". Since v2.0.0 (feat!: drop astro-seo, render directly) the component has no astro-seo dependency — it emits every tag itself. The package.json carries no astro-seo dep and Seo.astro's header documents "No external astro-seo dependency". Update the table row to match the shipped behavior. --- packages/astro-seo-graph/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro-seo-graph/README.md b/packages/astro-seo-graph/README.md index ca094d0..ecb99c0 100644 --- a/packages/astro-seo-graph/README.md +++ b/packages/astro-seo-graph/README.md @@ -20,7 +20,7 @@ schema.org best practices — see [AGENTS.md](https://github.com/jdevalk/seo-gra | API | Purpose | | ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **``** (`./Seo.astro`) | Single head component covering ``, meta description, canonical, Open Graph, Twitter card, hreflang alternates, and optional JSON-LD `@graph`. Wraps [`astro-seo`](https://github.com/jonasmerlin/astro-seo) for the meta tags. | +| **`<Seo>`** (`./Seo.astro`) | Single head component covering `<title>`, meta description, canonical, Open Graph, Twitter card, hreflang alternates, and optional JSON-LD `@graph`. Renders every `<head>` tag directly — no `astro-seo` dependency. | | **`createSchemaEndpoint`** | Factory returning an Astro `APIRoute` handler that serves a corpus-wide JSON-LD `@graph` for a content collection. | | **`createSchemaMap`** | Factory returning an `APIRoute` handler that emits a sitemap-style XML listing of your site's schema endpoints — the discovery point for agent crawlers. | | **`aggregate`** | Shared engine behind the endpoint factories. Walks a list of entries, runs a caller-supplied mapper, deduplicates by `@id`. |