Skip to content

Commit f3781c8

Browse files
authored
Merge pull request #21769 from LasseRosenow/doc-fixes
doc: fix some links and repair starlight
2 parents e2f5b26 + bcd9fbe commit f3781c8

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

doc/guides/misc/managing-a-release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: This page describes the process of managing a release.
1313
6. [Other Repositories](#6-other-repositories)
1414
7. [Important Fixes after Release](#7-important-fixes-after-release)
1515
8. [Resources](#8-resources)
16-
9. [Forum post templates](#9-forum-post-templates)
16+
9. [Forum Post Templates](#9-forum-post-templates)
1717

1818
## 1. Checklist
1919

@@ -194,9 +194,9 @@ A point release for a critical issue is best limited to a small number of change
194194
| Release manager tool | https://github.com/RIOT-OS/RIOT-release-manager |
195195
| Test automation helper scripts | https://github.com/RIOT-OS/Release-Specs?tab=readme-ov-file#pytest-runner |
196196
| Pending changes to test automation helper scripts | https://github.com/jia200x/Release-Specs/pulls |
197-
| Backport automation script | {RIOTBASE}/dist/tools/backport_pr |
197+
| Backport automation script | https://github.com/RIOT-OS/RIOT/blob/master/dist/tools/backport_pr |
198198
| Release statistics wiki | https://github.com/RIOT-OS/RIOT/wiki/release-statistics |
199-
| Release stats script | {RIOTBASE}/dist/tools/release-stats |
199+
| Release stats script | https://github.com/RIOT-OS/RIOT/blob/master/dist/tools/release-stats |
200200
| Release management org spreadsheet | https://drive.google.com/open?id=1rKYswFgQGYj4jSA4TBHjg980pAGoaKPj |
201201
| Release test tracking spreadsheet | https://drive.google.com/open?id=0B384VtEXbD_HRzJSY1NGdnFpWERxb2JFeGdaS09iUjV0TGhN |
202202

doc/starlight/src/content.config.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import { defineCollection, z } from "astro:content";
2-
import { glob, type Loader } from "astro/loaders";
2+
import { type Loader } from "astro/loaders";
3+
import { docsLoader } from "@astrojs/starlight/loaders";
34
import { docsSchema } from "@astrojs/starlight/schema";
45
import { promises as fs } from "node:fs";
56

67
export const collections = {
7-
docs: defineCollection({
8-
loader: glob({ pattern: "**/*.(md|mdx)", base: "../guides" }),
9-
schema: docsSchema(),
10-
}),
8+
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
119
changelog: defineCollection({
1210
loader: changelogLoader(),
1311
schema: z.object({

doc/starlight/src/content/docs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../guides

0 commit comments

Comments
 (0)