📖 feat: Word Wrapping for Text and Markdown Code Blocks (#10055)

Enables word wrapping for text, markdown, and plaintext code blocks
to prevent horizontal scrolling on long lines. Improves readability
for prose content in fenced code blocks.
This commit is contained in:
François Leblanc 2025-10-11 10:39:33 -04:00 committed by GitHub
parent 7c9a868d34
commit d990fe1d5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1243,8 +1243,12 @@ pre {
Ubuntu Mono,
monospace !important;
}
code[class='language-plaintext'] {
white-space: pre-line;
code.language-text,
code.language-txt,
code.language-plaintext,
code.language-markdown,
code.language-md {
white-space: pre-wrap !important;
}
code.hljs,
code[class*='language-'],