From 7e7db425b4f37896c891a4aab25265ec91f9bd93 Mon Sep 17 00:00:00 2001 From: eupthere Date: Thu, 7 May 2026 13:15:30 +0900 Subject: [PATCH 1/2] Add Korean markdown line spacing style --- styles/markdown.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles/markdown.scss b/styles/markdown.scss index a1b7b5189d..c0bfa681e9 100644 --- a/styles/markdown.scss +++ b/styles/markdown.scss @@ -107,3 +107,8 @@ padding-bottom: 0; } } + +// Korean text needs more line spacing for readability +html[lang="ko"] .rendered-markdown { + line-height: 1.7; +} \ No newline at end of file From b6024abe8b738715202267a07a787f437ad8b65d Mon Sep 17 00:00:00 2001 From: eupthere Date: Thu, 7 May 2026 13:17:56 +0900 Subject: [PATCH 2/2] Prevent awkward Korean line breaks --- styles/markdown.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/styles/markdown.scss b/styles/markdown.scss index c0bfa681e9..f4e6f60ab8 100644 --- a/styles/markdown.scss +++ b/styles/markdown.scss @@ -108,7 +108,10 @@ } } -// Korean text needs more line spacing for readability + html[lang="ko"] .rendered-markdown { + // Korean text needs more line spacing for readability line-height: 1.7; + // Prevent awkward Korean line breaks + word-break: keep-all; } \ No newline at end of file