Skip to content

Commit e1e8ee4

Browse files
authored
Merge branch 'production' into PCX-14131
2 parents f35809e + 2456719 commit e1e8ee4

File tree

191 files changed

+4946
-3908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+4946
-3908
lines changed

.github/CODEOWNERS

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
# AI
2020

21-
/src/content/docs/ai-gateway/ @kathayl @G4brym @mchenco @pdwittig @daisyfaithauma @cloudflare/pcx-technical-writing
22-
/src/content/docs/workers-ai/ @rita3ko @pdwittig @craigsdennis @markdembo @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
21+
/src/content/docs/ai-gateway/ @kathayl @G4brym @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
22+
/src/content/docs/workers-ai/ @rita3ko @craigsdennis @markdembo @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
2323
/src/content/docs/workers-ai/static @mchenco @craigsdennis @cloudflare/pcx-technical-writing
24-
/src/content/docs/vectorize/ @elithrar @vy-ton @pdwittig @sejoker @cloudflare/pcx-technical-writing
25-
/src/content/changelogs/workers-ai.yaml @kathayl @G4brym @mchenco @pdwittig @daisyfaithauma @cloudflare/pcx-technical-writing
26-
/src/content/changelogs/ai-gateway.yaml @kathayl @G4brym @mchenco @pdwittig @daisyfaithauma @cloudflare/pcx-technical-writing
27-
/src/content/changelogs/vectorize.yaml @elithrar @pdwittig @sejoker @cloudflare/pcx-technical-writing
24+
/src/content/docs/vectorize/ @elithrar @vy-ton @sejoker @cloudflare/pcx-technical-writing
25+
/src/content/changelogs/workers-ai.yaml @kathayl @G4brym @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
26+
/src/content/changelogs/ai-gateway.yaml @kathayl @G4brym @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
27+
/src/content/changelogs/vectorize.yaml @elithrar @sejoker @cloudflare/pcx-technical-writing
2828

2929
# Analytics & Logs
3030

astro.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import tailwind from "@astrojs/tailwind";
44
import starlightDocSearch from "@astrojs/starlight-docsearch";
55
import starlightImageZoom from "starlight-image-zoom";
66
import liveCode from "astro-live-code";
7-
import rehypeSlug from "rehype-slug";
87
import rehypeMermaid from "rehype-mermaid";
98
import rehypeAutolinkHeadings, {
109
type Options as rehypeAutolinkHeadingsOptions,
@@ -17,6 +16,7 @@ import icon from "astro-icon";
1716
import sitemap from "@astrojs/sitemap";
1817
import react from "@astrojs/react";
1918
import rehypeTitleFigure from "rehype-title-figure";
19+
import rehypeHeadingSlugs from "./plugins/rehype/heading-slugs";
2020

2121
const runLinkCheck = process.env.RUN_LINK_CHECK || false;
2222

@@ -95,7 +95,7 @@ export default defineConfig({
9595
rel: ["noopener"],
9696
},
9797
],
98-
rehypeSlug,
98+
rehypeHeadingSlugs,
9999
[rehypeAutolinkHeadings, autolinkConfig],
100100
// @ts-expect-error TODO: fix types
101101
rehypeTitleFigure,
@@ -155,7 +155,6 @@ export default defineConfig({
155155
MarkdownContent: "./src/components/overrides/MarkdownContent.astro",
156156
Sidebar: "./src/components/overrides/Sidebar.astro",
157157
PageSidebar: "./src/components/overrides/PageSidebar.astro",
158-
SiteTitle: "./src/components/overrides/SiteTitle.astro",
159158
PageTitle: "./src/components/overrides/PageTitle.astro",
160159
SocialIcons: "./src/components/overrides/SocialIcons.astro",
161160
SkipLink: "./src/components/overrides/SkipLink.astro",
@@ -170,6 +169,7 @@ export default defineConfig({
170169
"./src/mermaid.css",
171170
"./src/table.css",
172171
"./src/tailwind.css",
172+
"./src/title.css",
173173
"./src/tooltips.css",
174174
],
175175
pagination: false,

0 commit comments

Comments
 (0)