From: Paul Hänsch Date: Mon, 19 Jan 2026 06:05:12 +0000 (+0100) Subject: don't imply white-space: pre in blockquotes X-Git-Url: https://git.plutz.net/?a=commitdiff_plain;h=417cc425dee25026873f8c89b7aa43052df7af05;p=cgilite don't imply white-space: pre in blockquotes --- diff --git a/common.css b/common.css index 77ea843..c9555ec 100644 --- a/common.css +++ b/common.css @@ -51,10 +51,12 @@ kbd { font-style: italic; } blockquote { margin: .5em 0; padding: 1em; - white-space: pre-line; border: 1pt solid #888; border-left-width: 8pt; } +pre, code { + white-space: pre-wrap; +} ul, ol { padding-left: 1.5em; } dl dt { font-weight: bolder; }