diff options
author | Shinya Fujino | 2023-07-03 01:44:45 +0900 |
---|---|---|
committer | GitHub | 2023-07-02 18:44:45 +0200 |
commit | 987489c8dc310fd42a6948d979cf8265259ed971 (patch) | |
tree | 4d8793919ee2dfc71515ff191db7a754c02f5c53 | |
parent | 359fefc04aa9885f383ae80c7c11d4713c89b9a5 (diff) | |
download | IT.starlight-987489c8dc310fd42a6948d979cf8265259ed971.tar.gz IT.starlight-987489c8dc310fd42a6948d979cf8265259ed971.tar.bz2 IT.starlight-987489c8dc310fd42a6948d979cf8265259ed971.zip |
i18n(ja): Update frontmatter.md (#294)
-rw-r--r-- | docs/src/content/docs/ja/reference/frontmatter.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/src/content/docs/ja/reference/frontmatter.md b/docs/src/content/docs/ja/reference/frontmatter.md index bc8751b8..252217ad 100644 --- a/docs/src/content/docs/ja/reference/frontmatter.md +++ b/docs/src/content/docs/ja/reference/frontmatter.md @@ -130,3 +130,16 @@ interface HeroConfig { }>; } ``` + +### `lastUpdated` + +**type:** `Date | boolean` + +[グローバルの`lastUpdated`オプション](/ja/reference/configuration/#lastupdated)を上書きします。日付を指定する場合は有効な[YAMLタイムスタンプ](https://yaml.org/type/timestamp.html)である必要があり、ページのGit履歴に保存されている日付を上書きします。 + +```md +--- +title: 最終更新日をカスタマイズしたページ +lastUpdated: 2022-08-09 +--- +``` |