@astrojs/starlight 0.34.2 → 0.34.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/components/SiteTitle.astro +4 -0
- package/integrations/heading-links.ts +25 -4
- package/package.json +1 -1
- package/translations/ko.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @astrojs/starlight
|
|
2
2
|
|
|
3
|
+
## 0.34.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3058](https://github.com/withastro/starlight/pull/3058) [`274cc06`](https://github.com/withastro/starlight/commit/274cc06112824384771b944f504ab0faab45e2b9) Thanks [@techfg](https://github.com/techfg)! - Fixes display of focus indicator around site title
|
|
8
|
+
|
|
9
|
+
- [#3181](https://github.com/withastro/starlight/pull/3181) [`449c822`](https://github.com/withastro/starlight/commit/449c8229effaab19ece3c0a34e32595809c33cc8) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fixes an issue where all headings in Markdown and MDX content were rendered with a [clickable anchor link](https://starlight.astro.build/reference/configuration/#headinglinks), even in non-Starlight pages.
|
|
10
|
+
|
|
11
|
+
- [#3168](https://github.com/withastro/starlight/pull/3168) [`ca693fe`](https://github.com/withastro/starlight/commit/ca693feb4b6aa9f26b3d536d284288773b788ac6) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Updates Korean langage support with improvements and missing translations
|
|
12
|
+
|
|
3
13
|
## 0.34.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -43,6 +43,10 @@ const { siteTitle, siteTitleHref } = Astro.locals.starlightRoute;
|
|
|
43
43
|
color: var(--sl-color-text-accent);
|
|
44
44
|
text-decoration: none;
|
|
45
45
|
white-space: nowrap;
|
|
46
|
+
min-width: 0;
|
|
47
|
+
}
|
|
48
|
+
span {
|
|
49
|
+
overflow: hidden;
|
|
46
50
|
}
|
|
47
51
|
img {
|
|
48
52
|
height: calc(var(--sl-nav-height) - 2 * var(--sl-nav-pad-y));
|
|
@@ -6,6 +6,7 @@ import { h } from 'hastscript';
|
|
|
6
6
|
import type { Transformer } from 'unified';
|
|
7
7
|
import { SKIP, visit } from 'unist-util-visit';
|
|
8
8
|
import type { HookParameters, StarlightConfig } from '../types';
|
|
9
|
+
import { resolveCollectionPath } from '../utils/collection';
|
|
9
10
|
|
|
10
11
|
const AnchorLinkIcon = h(
|
|
11
12
|
'span',
|
|
@@ -24,10 +25,14 @@ const AnchorLinkIcon = h(
|
|
|
24
25
|
* Add anchor links to headings.
|
|
25
26
|
*/
|
|
26
27
|
export default function rehypeAutolinkHeadings(
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
docsCollectionPath: string,
|
|
29
|
+
useTranslationsForLang: AutolinkHeadingsOptions['useTranslations'],
|
|
30
|
+
absolutePathToLang: AutolinkHeadingsOptions['absolutePathToLang']
|
|
29
31
|
) {
|
|
30
32
|
const transformer: Transformer<Root> = (tree, file) => {
|
|
33
|
+
// If the document is not part of the Starlight docs collection, skip it.
|
|
34
|
+
if (!normalizePath(file.path).startsWith(docsCollectionPath)) return;
|
|
35
|
+
|
|
31
36
|
const pageLang = absolutePathToLang(file.path);
|
|
32
37
|
const t = useTranslationsForLang(pageLang);
|
|
33
38
|
|
|
@@ -67,7 +72,9 @@ export default function rehypeAutolinkHeadings(
|
|
|
67
72
|
|
|
68
73
|
interface AutolinkHeadingsOptions {
|
|
69
74
|
starlightConfig: Pick<StarlightConfig, 'markdown'>;
|
|
70
|
-
astroConfig:
|
|
75
|
+
astroConfig: Pick<AstroConfig, 'srcDir'> & {
|
|
76
|
+
experimental: Pick<AstroConfig['experimental'], 'headingIdCompat'>;
|
|
77
|
+
};
|
|
71
78
|
useTranslations: HookParameters<'config:setup'>['useTranslations'];
|
|
72
79
|
absolutePathToLang: HookParameters<'config:setup'>['absolutePathToLang'];
|
|
73
80
|
}
|
|
@@ -85,10 +92,24 @@ export const starlightAutolinkHeadings = ({
|
|
|
85
92
|
rehypeHeadingIds,
|
|
86
93
|
{ experimentalHeadingIdCompat: astroConfig.experimental?.headingIdCompat },
|
|
87
94
|
],
|
|
88
|
-
rehypeAutolinkHeadings(
|
|
95
|
+
rehypeAutolinkHeadings(
|
|
96
|
+
normalizePath(resolveCollectionPath('docs', astroConfig.srcDir)),
|
|
97
|
+
useTranslations,
|
|
98
|
+
absolutePathToLang
|
|
99
|
+
),
|
|
89
100
|
]
|
|
90
101
|
: [];
|
|
91
102
|
|
|
103
|
+
/**
|
|
104
|
+
* File path separators seems to be inconsistent on Windows when the rehype plugin is used on
|
|
105
|
+
* Markdown vs MDX files.
|
|
106
|
+
* For the time being, we normalize the path to unix style path.
|
|
107
|
+
*/
|
|
108
|
+
const backSlashRegex = /\\/g;
|
|
109
|
+
function normalizePath(path: string) {
|
|
110
|
+
return path.replace(backSlashRegex, '/');
|
|
111
|
+
}
|
|
112
|
+
|
|
92
113
|
// This utility is inlined from https://github.com/syntax-tree/hast-util-heading-rank
|
|
93
114
|
// Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
94
115
|
// MIT License: https://github.com/syntax-tree/hast-util-heading-rank/blob/main/license
|
package/package.json
CHANGED
package/translations/ko.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
|
-
"skipLink.label": "
|
|
2
|
+
"skipLink.label": "콘텐츠로 이동",
|
|
3
3
|
"search.label": "검색",
|
|
4
4
|
"search.ctrlKey": "Ctrl",
|
|
5
5
|
"search.cancelLabel": "취소",
|
|
6
|
-
"search.devWarning": "검색 기능은 프로덕션
|
|
6
|
+
"search.devWarning": "검색 기능은 프로덕션 빌드에서만 작동합니다. \n로컬에서 테스트하려면 사이트를 빌드하고 미리 보기를 실행하세요.",
|
|
7
7
|
"themeSelect.accessibleLabel": "테마 선택",
|
|
8
|
-
"themeSelect.dark": "
|
|
9
|
-
"themeSelect.light": "
|
|
8
|
+
"themeSelect.dark": "어두운 테마",
|
|
9
|
+
"themeSelect.light": "밝은 테마",
|
|
10
10
|
"themeSelect.auto": "자동",
|
|
11
11
|
"languageSelect.accessibleLabel": "언어 선택",
|
|
12
12
|
"menuButton.accessibleLabel": "메뉴",
|
|
13
13
|
"sidebarNav.accessibleLabel": "메인",
|
|
14
|
-
"tableOfContents.onThisPage": "
|
|
14
|
+
"tableOfContents.onThisPage": "목차",
|
|
15
15
|
"tableOfContents.overview": "개요",
|
|
16
|
-
"i18n.untranslatedContent": "이 콘텐츠는 아직
|
|
17
|
-
"page.editLink": "페이지
|
|
16
|
+
"i18n.untranslatedContent": "이 콘텐츠는 아직 번역되지 않았습니다.",
|
|
17
|
+
"page.editLink": "페이지 편집",
|
|
18
18
|
"page.lastUpdated": "마지막 업데이트:",
|
|
19
|
-
"page.previousLink": "이전",
|
|
20
|
-
"page.nextLink": "다음",
|
|
21
|
-
"page.draft": "이 콘텐츠는
|
|
22
|
-
"404.text": "페이지를 찾을 수 없습니다. URL을
|
|
23
|
-
"aside.note": "
|
|
19
|
+
"page.previousLink": "이전 페이지",
|
|
20
|
+
"page.nextLink": "다음 페이지",
|
|
21
|
+
"page.draft": "이 콘텐츠는 아직 초안 상태이며, 최종 빌드에는 포함되지 않습니다.",
|
|
22
|
+
"404.text": "페이지를 찾을 수 없습니다. URL을 다시 확인해보거나 검색을 사용해보세요.",
|
|
23
|
+
"aside.note": "참고",
|
|
24
24
|
"aside.tip": "팁",
|
|
25
25
|
"aside.caution": "주의",
|
|
26
26
|
"aside.danger": "위험",
|
|
27
27
|
"fileTree.directory": "디렉터리",
|
|
28
|
-
"builtWithStarlight.label": "Starlight로
|
|
29
|
-
"heading.anchorLabel": "
|
|
28
|
+
"builtWithStarlight.label": "이 웹사이트는 Starlight로 제작되었습니다.",
|
|
29
|
+
"heading.anchorLabel": "섹션 제목: “{{title}}”"
|
|
30
30
|
}
|