Use self-closing <br> tags Use self-closing tags so that the HTML output is also valid XML.
1 files changed, 1 insertions(+), 1 deletions(-) M main.go
M main.go => main.go +1 -1
@@ 117,7 117,7 @@ func (h *HTMLWriter) Handle(line gemini.Line) { if line == "" { blank = true if h.br { - fmt.Fprint(h.out, "<br>\n") + fmt.Fprint(h.out, "<br/>\n") } else { h.br = true }