From 9ccb69d80e49b75555ac33b9f6725163a955f9d8 Mon Sep 17 00:00:00 2001 From: S4D0X Date: Tue, 24 Feb 2026 12:18:17 +0430 Subject: [PATCH 1/3] Just I have fixed Some typos, from issue 'Missing spaces #123' ;) --- src/data/links/miscellaneous.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/links/miscellaneous.yaml b/src/data/links/miscellaneous.yaml index cea2e46..ba5ec19 100644 --- a/src/data/links/miscellaneous.yaml +++ b/src/data/links/miscellaneous.yaml @@ -23,8 +23,8 @@ heading: items: - text: "Android Developer Verification Discourse" url: "https://gist.github.com/agnostic-apollo/b8d8daa24cbdd216687a6bef53d417a6" - author: "Termux developer" - author_text: "agnostic-apollo" + author: " Termux developer" + author_text: " agnostic-apollo" author_url: "https://github.com/agnostic-apollo" - text: "Opposition recommendations" url: "https://docs.google.com/document/d/1axlQkdc-wseda9PL2ZP0fgy3I4DqAVVlK5kJw4ksIwU" From d7f4c8df1ad0c1461424b50670944ac03823798e Mon Sep 17 00:00:00 2001 From: S4D0X Date: Wed, 25 Feb 2026 12:31:45 +0430 Subject: [PATCH 2/3] fix: correct spacing implementation --- src/components/SharedLinks.astro | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/components/SharedLinks.astro b/src/components/SharedLinks.astro index 07017d6..52ddd97 100644 --- a/src/components/SharedLinks.astro +++ b/src/components/SharedLinks.astro @@ -86,7 +86,15 @@ const byLabel = resolve({ en: 'by', ru: 'от' }, locale); return (
  • {resolve(item.text, locale)} ↗ - {hasAuthor && <> {byLabel} {item.author} {item.author_text} ↗} + {hasAuthor && ( + <> + {' '}{byLabel}{' '} + {item.author}{' '} + + {item.author_text} ↗ + + +)}
  • ); })} From 9bc2355c28590daf892596d59e92a9ca94ef1aa5 Mon Sep 17 00:00:00 2001 From: S4D0X Date: Wed, 25 Feb 2026 12:36:21 +0430 Subject: [PATCH 3/3] removed static 'spaces' before texts. --- src/data/links/miscellaneous.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/links/miscellaneous.yaml b/src/data/links/miscellaneous.yaml index ba5ec19..cea2e46 100644 --- a/src/data/links/miscellaneous.yaml +++ b/src/data/links/miscellaneous.yaml @@ -23,8 +23,8 @@ heading: items: - text: "Android Developer Verification Discourse" url: "https://gist.github.com/agnostic-apollo/b8d8daa24cbdd216687a6bef53d417a6" - author: " Termux developer" - author_text: " agnostic-apollo" + author: "Termux developer" + author_text: "agnostic-apollo" author_url: "https://github.com/agnostic-apollo" - text: "Opposition recommendations" url: "https://docs.google.com/document/d/1axlQkdc-wseda9PL2ZP0fgy3I4DqAVVlK5kJw4ksIwU"