diff options
author | zeripath <art27@cantab.net> | 2021-08-14 00:16:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-14 01:16:56 +0200 |
commit | 23a87a003eb2b592ad5295f73d8d52d3f24069c6 (patch) | |
tree | 761cce20349f43b20702ee67d18629835db65a57 /modules/highlight/highlight.go | |
parent | a4962a944002c3d3949520949f964aae7ff478ed (diff) | |
download | gitea-23a87a003eb2b592ad5295f73d8d52d3f24069c6.tar.gz gitea-23a87a003eb2b592ad5295f73d8d52d3f24069c6.zip |
Ensure empty lines are copiable and final new line too (#16678)
* Ensure empty lines are copiable and final new line too
When files are highlighted the newline character needs to be added in a whitespace
compliant mode. Also ensure the final empty newline is rendered.
Fix #16434
* Add test and ensure spans closed
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/highlight/highlight.go')
-rw-r--r-- | modules/highlight/highlight.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/highlight/highlight.go b/modules/highlight/highlight.go index 568035fbb7..ed0548578a 100644 --- a/modules/highlight/highlight.go +++ b/modules/highlight/highlight.go @@ -166,6 +166,11 @@ func File(numLines int, fileName string, code []byte) map[int]string { } htmlw.Flush() + finalNewLine := false + if len(code) > 0 { + finalNewLine = code[len(code)-1] == '\n' + } + m := make(map[int]string, numLines) for k, v := range strings.SplitN(htmlbuf.String(), "\n", numLines) { line := k + 1 @@ -173,9 +178,17 @@ func File(numLines int, fileName string, code []byte) map[int]string { //need to keep lines that are only \n so copy/paste works properly in browser if content == "" { content = "\n" + } else if content == `</span><span class="w">` { + content += "\n</span>" } + content = strings.TrimSuffix(content, `<span class="w">`) + content = strings.TrimPrefix(content, `</span>`) m[line] = content } + if finalNewLine { + m[numLines+1] = "<span class=\"w\">\n</span>" + } + return m } |