diff --git a/BlogLiterately.cabal b/BlogLiterately.cabal
--- a/BlogLiterately.cabal
+++ b/BlogLiterately.cabal
@@ -1,5 +1,5 @@
 Name:           BlogLiterately
-Version:        0.8.8
+Version:        0.8.8.1
 Synopsis:       A tool for posting Haskelly articles to blogs
 Description:    Write blog posts in Markdown format, then use BlogLiterately
                 to do syntax highlighting, format ghci sessions, and upload
diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,14 @@
+0.8.8.1 (25 August 2022)
+------------------------
+
+  - Bug fix: keep explicit line breaks out of generated HTML
+
+0.8.8 (20 May 2022)
+-------------------
+
+  - Support GHC through 9.2
+  - Allow `pandoc-2.18`, `citeproc-0.7`, and `text-2.0`
+
 0.8.7 (21 July 2020)
 --------------------
 
diff --git a/src/Text/BlogLiterately/Transform.hs b/src/Text/BlogLiterately/Transform.hs
--- a/src/Text/BlogLiterately/Transform.hs
+++ b/src/Text/BlogLiterately/Transform.hs
@@ -590,6 +590,7 @@
       }
     writeOpts bl tpl = def
       { writerReferenceLinks  = True
+      , writerWrapText        = WrapNone
       , writerTableOfContents = toc' bl
       , writerHTMLMathMethod  =
           case math' bl of
