diff options
-rw-r--r-- | templates/code/searchresults.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/search.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/code/searchresults.tmpl b/templates/code/searchresults.tmpl index 28c33a26de..bb21a5e0dc 100644 --- a/templates/code/searchresults.tmpl +++ b/templates/code/searchresults.tmpl @@ -31,7 +31,7 @@ <a href="{{$repo.Link}}/src/commit/{{$result.CommitID | PathEscape}}/{{$result.Filename | PathEscapeSegments}}#L{{.}}"><span>{{.}}</span></a> {{end}} </td> - <td class="lines-code chroma"><code class="code-inner">{{.FormattedLines | Safe}}</code></td> + <td class="lines-code chroma"><code class="code-inner">{{.FormattedLines}}</code></td> </tr> </tbody> </table> diff --git a/templates/repo/search.tmpl b/templates/repo/search.tmpl index b6c90de32f..b616b4de32 100644 --- a/templates/repo/search.tmpl +++ b/templates/repo/search.tmpl @@ -53,7 +53,7 @@ <a href="{{$.SourcePath}}/src/commit/{{PathEscape $result.CommitID}}/{{PathEscapeSegments $result.Filename}}#L{{.}}"><span>{{.}}</span></a> {{end}} </td> - <td class="lines-code chroma"><code class="code-inner">{{.FormattedLines | Safe}}</code></td> + <td class="lines-code chroma"><code class="code-inner">{{.FormattedLines}}</code></td> </tr> </tbody> </table> |