packages feed

org-mode-lucid 1.6.2 → 1.6.3

raw patch · 3 files changed

+8/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -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
lib/Data/Org/Lucid.hs view
@@ -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
org-mode-lucid.cabal view
@@ -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