diff options
author | zeripath <art27@cantab.net> | 2022-08-13 19:32:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 19:32:34 +0100 |
commit | 99efa02edf4e3750e19bc28f7b856791356d1583 (patch) | |
tree | f82d0917d02e6c3a6025b0f08c67f32b2f6b41d0 /routers/web/repo/lfs.go | |
parent | 11dc6df5be5ae1da8d570e440f97060d2284dd13 (diff) | |
download | gitea-99efa02edf4e3750e19bc28f7b856791356d1583.tar.gz gitea-99efa02edf4e3750e19bc28f7b856791356d1583.zip |
Switch Unicode Escaping to a VSCode-like system (#19990)
This PR rewrites the invisible unicode detection algorithm to more
closely match that of the Monaco editor on the system. It provides a
technique for detecting ambiguous characters and relaxes the detection
of combining marks.
Control characters are in addition detected as invisible in this
implementation whereas they are not on monaco but this is related to
font issues.
Close #19913
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'routers/web/repo/lfs.go')
-rw-r--r-- | routers/web/repo/lfs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/repo/lfs.go b/routers/web/repo/lfs.go index 0e446f2de0..baec48bfea 100644 --- a/routers/web/repo/lfs.go +++ b/routers/web/repo/lfs.go @@ -309,7 +309,7 @@ func LFSFileGet(ctx *context.Context) { // Building code view blocks with line number on server side. escapedContent := &bytes.Buffer{} - ctx.Data["EscapeStatus"], _ = charset.EscapeControlReader(rd, escapedContent) + ctx.Data["EscapeStatus"], _ = charset.EscapeControlReader(rd, escapedContent, ctx.Locale) var output bytes.Buffer lines := strings.Split(escapedContent.String(), "\n") |