This file is indexed.

/usr/share/gocode/src/github.com/yosssi/gohtml/utils.go is in golang-github-yosssi-gohtml-dev 0.0~git20150923.0.ccf383e-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package gohtml

import (
	"bytes"
	"strings"
)

// writeLine writes an HTML line to the buffer.
func writeLine(bf *bytes.Buffer, s string, indent int) {
	writeLineFeed(bf)
	writeIndent(bf, indent)
	bf.WriteString(s)
}

// writeLineFeed writes a line feed to the buffer.
func writeLineFeed(bf *bytes.Buffer) {
	if bf.Len() > 0 {
		bf.WriteString("\n")
	}
}

// writeIndent writes indents to the buffer.
func writeIndent(bf *bytes.Buffer, indent int) {
	bf.WriteString(strings.Repeat(defaultIndentString, indent))
}

// unifyLineFeed unifies line feeds.
func unifyLineFeed(s string) string {
	return strings.Replace(strings.Replace(s, "\r\n", "\n", -1), "\r", "\n", -1)
}