From 08574104bc9ba550153888cfdc4ebf28d500ce56 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 10 Nov 2019 13:35:09 -0500 Subject: Correct capitalization in quoted_reply --- lib/templates/template.go | 44 ++++++++++++++++++++++++++++++++------------ 1 file changed, 32 insertions(+), 12 deletions(-) (limited to 'lib/templates') diff --git a/lib/templates/template.go b/lib/templates/template.go index e19b5ae..a2f35e2 100644 --- a/lib/templates/template.go +++ b/lib/templates/template.go @@ -70,39 +70,59 @@ func wrapLine(text string, lineWidth int) string { if len(words) == 0 { return text } - wrapped := words[0] - spaceLeft := lineWidth - len(wrapped) + var wrapped strings.Builder + wrapped.WriteString(words[0]) + spaceLeft := lineWidth - wrapped.Len() for _, word := range words[1:] { if len(word)+1 > spaceLeft { - wrapped += "\n" + word + wrapped.WriteRune('\n') + wrapped.WriteString(word) spaceLeft = lineWidth - len(word) } else { - wrapped += " " + word + wrapped.WriteRune(' ') + wrapped.WriteString(word) spaceLeft -= 1 + len(word) } } - return wrapped + return wrapped.String() } func wrapText(text string, lineWidth int) string { text = strings.ReplaceAll(text, "\r\n", "\n") lines := strings.Split(text, "\n") - var wrapped string + var wrapped strings.Builder for _, line := range lines { - wrapped += wrapLine(line, lineWidth) + "\n" + switch { + case line == "": + // deliberately left blank + case line[0] == '>': + // leave quoted text alone + wrapped.WriteString(line) + default: + wrapped.WriteString(wrapLine(line, lineWidth)) + } + wrapped.WriteRune('\n') } - return wrapped + return wrapped.String() } -// Wraping lines at 70 so that with the "> " of the quote it is under 72 +// quote prepends "> " in front of every line in text func quote(text string) string { text = strings.ReplaceAll(text, "\r\n", "\n") + lines := strings.Split(text, "\n") + var quoted strings.Builder + for _, line := range lines { + if line == "" { + quoted.WriteString(">\n") + } + quoted.WriteString("> ") + quoted.WriteString(line) + quoted.WriteRune('\n') + } - quoted := "> " + wrapText(text, 70) - quoted = strings.ReplaceAll(quoted, "\n", "\n> ") - return quoted + return quoted.String() } var templateFuncs = template.FuncMap{ -- cgit v1.2.3