From fb95988a647a3626bf5987c60510ed296bb40381 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Tue, 4 Jun 2019 03:22:03 -0400 Subject: [PATCH] summary may not actually need a label --- fun.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fun.go b/fun.go index 526ebfd..a1aceac 100644 --- a/fun.go +++ b/fun.go @@ -55,7 +55,10 @@ func reverbolate(honks []*Honk) { h.Noise = unpucker(h.Noise) precis := h.Precis if precis != "" { - precis = "

summary: " + precis + "

" + if strings.IndexByte(precis, ':') == -1 { + precis = "summary: " + precis + } + precis = "

" + precis + "

" } h.HTML, _ = filt.String(precis + h.Noise) emuxifier := func(e string) string {