1
0
Fork 0

🔥 Remove unused func

This commit is contained in:
makeworld 2020-11-04 20:42:30 -05:00
parent fb47eff23e
commit 6993c24470
1 changed files with 0 additions and 11 deletions

View File

@ -80,17 +80,6 @@ func wrapLine(line string, width int, prefix, suffix string, includeFirst bool)
return ret
}
// tagLines splits a string into lines and adds a the given
// string to the start and another to the end.
// It is used for adding cview color tags.
func tagLines(s, start, end string) string {
lines := strings.Split(s, "\n")
for i := range lines {
lines[i] = start + lines[i] + end
}
return strings.Join(lines, "\n")
}
// convertRegularGemini converts non-preformatted blocks of text/gemini
// into a cview-compatible format.
// Since this only works on non-preformatted blocks, RenderGemini