docs(astro-seo-graph): correct <Seo> description — renders head directly#51
Open
schlessera wants to merge 1 commit into
Open
docs(astro-seo-graph): correct <Seo> description — renders head directly#51schlessera wants to merge 1 commit into
schlessera wants to merge 1 commit into
Conversation
The "What you get" table still said `<Seo>` "Wraps astro-seo for the meta tags". Since v2.0.0 (feat!: drop astro-seo, render <head> directly) the component has no astro-seo dependency — it emits every <head> 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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The What you get table in
packages/astro-seo-graph/README.mdstill describes<Seo>as wrappingastro-seo:That's no longer true. Since v2.0.0 (
fc161b9— feat(astro-seo-graph)!: drop astro-seo, render<head>directly) the component renders every<head>tag itself:packages/astro-seo-graph/package.jsonhas noastro-seodependency.src/components/Seo.astro's header comment states "No externalastro-seodependency" and documents the full tag order it emits directly.Change
One table cell — replace the stale "Wraps astro-seo" sentence with "Renders every
<head>tag directly — noastro-seodependency." (Prettier re-aligned the table column.)Docs-only; no changeset.