回答編集履歴

1

不明であった対応方法が判明したため.

2024/08/06 21:39

投稿

NagaseTomohiko
NagaseTomohiko

スコア92

test CHANGED
@@ -1,3 +1,12 @@
1
- 自己回答
1
+ (2024/8/7 対応方法がわかったの,編集)
2
- [ソース](https://github.com/withastro/starlight)を覗いてみたら,個別ページのタグの追加はやっていない感じでした.
2
+ [Edit the HTML head of Starlight pages](https://hideoo.dev/notes/starlight-custom-html-head)
3
+ にheader部へのタグ追加方法が記載されていました.
4
+ 個別ページに以下のとおりに追加すればよいです.
5
+ ```
6
+ head:
7
+ # Add a custom meta tag to define the author of this page.
8
+ - tag: meta
9
+ attrs:
3
- 現状は回避策で運用です.
10
+ name: author
11
+ content: HiDeoo
12
+ ```