From 4dde022de8344800c7f5e0f7ea366fd4b786e901 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Fri, 11 Mar 2022 13:42:39 +0100 Subject: xhtml: Add a newline after a blockquote Thanks Maranda. --- poezio/xhtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poezio/xhtml.py b/poezio/xhtml.py index 29df520d..890c4f66 100644 --- a/poezio/xhtml.py +++ b/poezio/xhtml.py @@ -431,7 +431,7 @@ class XHTMLHandler(ContentHandler): if 'href' in attrs and attrs['href'] != link_text: builder.append(' (%s)' % _trim(attrs['href'])) elif name == 'blockquote': - builder.append('”') + builder.append('”\n') elif name in ('cite', 'em', 'strong'): self.pop_formatting() elif name in ('ol', 'p', 'ul'): -- cgit v1.2.3