Preserve whitespace in rendered comments

Fixes #11171
pull/11014/head
elhussein almasri 2023-11-02 19:42:53 +00:00 zatwierdzone przez LB (Ben Johnston)
rodzic 67a2ff28b2
commit 8f75331825
4 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -9,6 +9,7 @@ Changelog
* Fix: Prevent password change form from raising a validation error when browser autocomplete fills in the "Old password" field (Chiemezuo Akujobi)
* Fix: Ensure that the legacy dropdown options, when closed, do not get accidentally clicked by other interactions wide viewports (CheesyPhoenix, Christer Jensen)
* Fix: Add a fallback background for the editing preview iframe for sites without a background (Ian Price)
* Fix: Preserve whitespace in rendered comments (Elhussein Almasri)
* Docs: Document, for contributors, the use of translate string literals passed as arguments to tags and filters using `_()` within templates (Chiemezuo Akujobi)
* Maintenance: Update BeautifulSoup upper bound to 4.12.x (scott-8)
* Maintenance: Migrate initialization of classes (such as `body.ready`) from multiple JavaScript implementations to one Stimulus controller `w-init` (Chiemezuo Akujobi)

Wyświetl plik

@ -759,6 +759,7 @@
* CheesyPhoenix
* Vedant Pandey
* Ian Price
* Elhussein Almasri
## Translators

Wyświetl plik

@ -24,6 +24,7 @@
padding-top: 10px;
padding-bottom: 10px;
word-break: break-all;
white-space: pre-wrap;
&--mode-deleting {
color: theme('colors.text-context');

Wyświetl plik

@ -22,6 +22,7 @@ depth: 1
* Prevent password change form from raising a validation error when browser autocomplete fills in the "Old password" field (Chiemezuo Akujobi)
* Ensure that the legacy dropdown options, when closed, do not get accidentally clicked by other interactions wide viewports (CheesyPhoenix, Christer Jensen)
* Add a fallback background for the editing preview iframe for sites without a background (Ian Price)
* Preserve whitespace in rendered comments (Elhussein Almasri)
### Documentation