I’d like to suggest increasing the line spacing for Korean text across the website.
Current behavior
The current line spacing for Korean content feels too tight. In many cases, the vertical spacing between lines is similar to the horizontal spacing between words, which makes it harder for the eye to naturally track lines of text.
This issue is more noticeable in Korean, probably because of the glyph difference. Some fonts allocate less vertical space for Korean glyphs (because Korean characters don't have descenders like latin alphabet), which can make the default line height feel visually compressed.
Suggested improvement
Increasing the line spacing (line height) would improve readability. For example:
This can be done by adding following CSS rule to styles/markdown.scss
// Korean text needs more line spacing for readability
html[lang="ko"] .rendered-markdown {
line-height: 1.8;
}
I’d like to suggest increasing the line spacing for Korean text across the website.
Current behavior
The current line spacing for Korean content feels too tight. In many cases, the vertical spacing between lines is similar to the horizontal spacing between words, which makes it harder for the eye to naturally track lines of text.
This issue is more noticeable in Korean, probably because of the glyph difference. Some fonts allocate less vertical space for Korean glyphs (because Korean characters don't have descenders like latin alphabet), which can make the default line height feel visually compressed.
Suggested improvement
Increasing the line spacing (line height) would improve readability. For example:
This can be done by adding following CSS rule to
styles/markdown.scss