Skip to content

fix: correct <meta> property casing #1455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@

<meta name="twitter:title" content="{data.gist.name} • Playground • Svelte" />
<meta name="twitter:description" content="Web development for the rest of us" />
<meta name="Description" content="Interactive Svelte playground" />
<meta name="description" content="Interactive Svelte playground" />
</svelte:head>

<svelte:window
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

<meta name="twitter:title" content="{data.gist.name} • Playground • Svelte" />
<meta name="twitter:description" content="Web development for the rest of us" />
<meta name="Description" content="Interactive Svelte playground" />
<meta name="description" content="Interactive Svelte playground" />
</svelte:head>

<div class="repl-outer">
Expand Down
2 changes: 1 addition & 1 deletion apps/svelte.dev/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<meta name="twitter:title" content="Svelte" />
<meta name="twitter:description" content="Web development for the rest of us" />
<meta name="Description" content="Web development for the rest of us" />
<meta name="description" content="Web development for the rest of us" />
</svelte:head>

<div class="home">
Expand Down
2 changes: 1 addition & 1 deletion apps/svelte.dev/src/routes/blog/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<meta name="twitter:title" content="Svelte blog" />
<meta name="twitter:description" content="Articles about Svelte and UI development" />
<meta name="Description" content="Articles about Svelte and UI development" />
<meta name="description" content="Articles about Svelte and UI development" />
</svelte:head>

<h1 class="visually-hidden">Blog</h1>
Expand Down
2 changes: 1 addition & 1 deletion apps/svelte.dev/src/routes/blog/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content={data.metadata.title} />
<meta name="twitter:description" content={data.metadata.description} />
<meta name="Description" content={data.metadata.description} />
<meta name="description" content={data.metadata.description} />

<meta name="twitter:image" content="https://svelte.dev/blog/{$page.params.slug}/card.png" />
<meta name="og:image" content="https://svelte.dev/blog/{$page.params.slug}/card.png" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
content="{data.document.metadata.title} • Svelte documentation"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="Description" content="{data.document.metadata.title} • Svelte documentation" />
<meta name="description" content="{data.document.metadata.title} • Svelte documentation" />
<meta
name="twitter:image"
content="https://svelte.dev/docs/{page.params.topic}/{page.params.path}/card.png"
Expand Down