Browse Source

HTML escape all lines of the search result (#3402)

Fixes #3383.
for-closed-social
Morgan Bazalgette 6 years ago
committed by Lauris BH
parent
commit
d644e88107
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      modules/search/search.go

+ 5
- 4
modules/search/search.go View File

@ -6,6 +6,7 @@ package search
import (
"bytes"
"html"
gotemplate "html/template"
"strings"
@ -75,17 +76,17 @@ func searchResult(result *indexer.RepoSearchResult, startIndex, endIndex int) (*
closeActiveIndex := util.Min(result.EndIndex-index, len(line))
err = writeStrings(&formattedLinesBuffer,
`<li>`,
line[:openActiveIndex],
html.EscapeString(line[:openActiveIndex]),
`<span class='active'>`,
line[openActiveIndex:closeActiveIndex],
html.EscapeString(line[openActiveIndex:closeActiveIndex]),
`</span>`,
line[closeActiveIndex:],
html.EscapeString(line[closeActiveIndex:]),
`</li>`,
)
} else {
err = writeStrings(&formattedLinesBuffer,
`<li>`,
line,
html.EscapeString(line),
`</li>`,
)
}

Loading…
Cancel
Save