summaryrefslogtreecommitdiff
path: root/ref.go
diff options
context:
space:
mode:
Diffstat (limited to 'ref.go')
-rw-r--r--ref.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ref.go b/ref.go
index 7d62f3b..206b351 100644
--- a/ref.go
+++ b/ref.go
@@ -42,7 +42,7 @@ func interpEscape(str string) string {
rt += string(str[i])
}
}
- return rt + "\n"
+ return rt
}
func getRefTxt(lines []string) string {
@@ -131,7 +131,7 @@ Below is an example.
.\"ยง#.TS\nexpand;\nl1w(1.5i) l1w(4.5i).#.TE#()#\fC#\fP
The final two arguments in that example are optional.`)
}
- tableHead = interpEscape(words[1])
+ tableHead = interpEscape(words[1] + "\n")
tableFoot = interpEscape(words[2])
delim = words[3]
if wc > 4 {