diff options
| author | Albert Krewinkel <albert@zeitkraut.de> | 2022-12-20 13:03:13 +0100 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-12-20 13:39:16 -0800 |
| commit | 1328e57f088d9f4dab230cd608c5945c605efb3c (patch) | |
| tree | d4974bac1cbcf8d243098916eb946af1d15eae8c /src/Text | |
| parent | c954dfab59fd1d93a838e4023c9f365280e63b30 (diff) | |
Shared: use LineBreak as default block sep in blocksToInlines
This change also affects the `pandoc.utils.blocks_to_inlines` Lua
function.
Closes: #8499
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Shared.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs index 624696c1e..c0ba38966 100644 --- a/src/Text/Pandoc/Shared.hs +++ b/src/Text/Pandoc/Shared.hs @@ -847,7 +847,7 @@ defaultBlocksSeparator :: Inlines defaultBlocksSeparator = -- This is used in the pandoc.utils.blocks_to_inlines function. Docs -- there should be updated if this is changed. - B.str "\8233" -- PARAGRAPH SEPARATOR + B.linebreak -- -- Safe read |
