aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcrystal <71373843+CrystalCommunication@users.noreply.github.com>2023-02-01 21:51:02 -0700
committerGitHub <noreply@github.com>2023-02-01 22:51:02 -0600
commit5d9c64b3feeab32678a983d4256272c010a0e057 (patch)
treecf50f44933a247a89ff8a1052158bb3d263bf71d
parent4e946e5a7d79c3a933eefc8584444bc02f52b874 (diff)
downloadgitea-5d9c64b3feeab32678a983d4256272c010a0e057.tar.gz
gitea-5d9c64b3feeab32678a983d4256272c010a0e057.zip
Fix line spacing for plaintext previews (#22699)
Adding `<br>` between each line is not necessary since the entire file is rendered inside a `<pre>` fixes https://codeberg.org/Codeberg/Community/issues/915
-rw-r--r--modules/charset/escape.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/charset/escape.go b/modules/charset/escape.go
index 3b1c206977..5608836a45 100644
--- a/modules/charset/escape.go
+++ b/modules/charset/escape.go
@@ -44,7 +44,7 @@ func EscapeControlReader(reader io.Reader, writer io.Writer, locale translation.
return streamer.escaped, err
}
-// EscapeControlStringReader escapes the unicode control sequences in a provided reader of string content and writer in a locale and returns the findings as an EscapeStatus and the escaped []byte
+// EscapeControlStringReader escapes the unicode control sequences in a provided reader of string content and writer in a locale and returns the findings as an EscapeStatus and the escaped []byte. HTML line breaks are not inserted after every newline by this method.
func EscapeControlStringReader(reader io.Reader, writer io.Writer, locale translation.Locale, allowed ...rune) (escaped *EscapeStatus, err error) {
bufRd := bufio.NewReader(reader)
outputStream := &HTMLStreamerWriter{Writer: writer}
@@ -65,10 +65,6 @@ func EscapeControlStringReader(reader io.Reader, writer io.Writer, locale transl
}
break
}
- if err := streamer.SelfClosingTag("br"); err != nil {
- streamer.escaped.HasError = true
- return streamer.escaped, err
- }
}
return streamer.escaped, err
}