From 1f141963a1c301939e850b8612a4174e2052f058 Mon Sep 17 00:00:00 2001 From: radishzzz Date: Mon, 19 May 2025 01:28:13 +0100 Subject: [PATCH] fix: whitespace in footer incorrectly removed during compression --- src/components/Footer.astro | 5 +---- src/content/posts/guides/Theme Guide-en.md | 2 +- src/content/posts/guides/Theme Guide-es.md | 2 +- src/content/posts/guides/Theme Guide-ja.md | 2 +- src/content/posts/guides/Theme Guide-ru.md | 2 +- src/content/posts/guides/Theme Guide-zh-tw.md | 2 +- src/content/posts/guides/Theme Guide-zh.md | 2 +- 7 files changed, 7 insertions(+), 10 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 3f9d7a5..f5aedd3 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -40,10 +40,7 @@ const footerLinkClass = 'highlight-hover footer-highlight-position-fix py-0.8 tr

{links.map((link, index) => ( <> - - {link.name} - - {index < links.length - 1 && ' / '} + {link.name} {index < links.length - 1 && '/'} ))}

diff --git a/src/content/posts/guides/Theme Guide-en.md b/src/content/posts/guides/Theme Guide-en.md index c34544e..eea49fc 100644 --- a/src/content/posts/guides/Theme Guide-en.md +++ b/src/content/posts/guides/Theme Guide-en.md @@ -174,7 +174,7 @@ footer: { // }, ] // year of website start - startYear: 2024 + startYear: 2025 } ``` diff --git a/src/content/posts/guides/Theme Guide-es.md b/src/content/posts/guides/Theme Guide-es.md index a2ddf66..58e17ed 100644 --- a/src/content/posts/guides/Theme Guide-es.md +++ b/src/content/posts/guides/Theme Guide-es.md @@ -174,7 +174,7 @@ footer: { // }, ] // año de inicio del sitio web - startYear: 2024 + startYear: 2025 } ``` diff --git a/src/content/posts/guides/Theme Guide-ja.md b/src/content/posts/guides/Theme Guide-ja.md index 37091ea..6f7ff97 100644 --- a/src/content/posts/guides/Theme Guide-ja.md +++ b/src/content/posts/guides/Theme Guide-ja.md @@ -174,7 +174,7 @@ footer: { // }, ] // サイト開始年 - startYear: 2024 + startYear: 2025 } ``` diff --git a/src/content/posts/guides/Theme Guide-ru.md b/src/content/posts/guides/Theme Guide-ru.md index 7945b0d..7606879 100644 --- a/src/content/posts/guides/Theme Guide-ru.md +++ b/src/content/posts/guides/Theme Guide-ru.md @@ -174,7 +174,7 @@ footer: { // }, ] // год начала работы веб-сайта - startYear: 2024 + startYear: 2025 } ``` diff --git a/src/content/posts/guides/Theme Guide-zh-tw.md b/src/content/posts/guides/Theme Guide-zh-tw.md index a88f3da..3e41c80 100644 --- a/src/content/posts/guides/Theme Guide-zh-tw.md +++ b/src/content/posts/guides/Theme Guide-zh-tw.md @@ -174,7 +174,7 @@ footer: { // }, ] // 建站年份 - startYear: 2024 + startYear: 2025 } ``` diff --git a/src/content/posts/guides/Theme Guide-zh.md b/src/content/posts/guides/Theme Guide-zh.md index 8eff18d..8503193 100644 --- a/src/content/posts/guides/Theme Guide-zh.md +++ b/src/content/posts/guides/Theme Guide-zh.md @@ -174,7 +174,7 @@ footer: { // }, ] // 建站年份 - startYear: 2024 + startYear: 2025 } ```