diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## 1.6.3 (2022-07-17)
+
+#### Fixed
+
+- Account for `\n\n` gaps in Quote blocks.
+
 ## 1.6.2 (2022-04-26)
 
 #### Added
diff --git a/lib/Data/Org/Lucid.hs b/lib/Data/Org/Lucid.hs
--- a/lib/Data/Org/Lucid.hs
+++ b/lib/Data/Org/Lucid.hs
@@ -153,7 +153,7 @@
 
 blockHTML :: OrgStyle -> Block -> Html ()
 blockHTML os b = case b of
-  Quote t                  -> blockquote_ . p_ $ toHtml t
+  Quote t                  -> blockquote_ . traverse_ (p_ . toHtml) $ T.splitOn "\n\n" t
   Example t | bootstrap os -> pre_ [class_ "example"] $ toHtml t
             | bulma os     -> pre_ [class_ "box"] $ toHtml t
             | otherwise    -> pre_ $ toHtml t
diff --git a/org-mode-lucid.cabal b/org-mode-lucid.cabal
--- a/org-mode-lucid.cabal
+++ b/org-mode-lucid.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.2
 name:               org-mode-lucid
-version:            1.6.2
+version:            1.6.3
 synopsis:           Lucid integration for org-mode.
 description:        Lucid integration for org-mode.
 category:           Web
