diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2016-10-13 11:38:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-13 11:38:19 +0200 |
| commit | 4eff6076788d6852974985a0bfcbf73c4d12244e (patch) | |
| tree | d9b882c7c0d14195385033cf305f15148d08f318 /src/Text/Pandoc/Readers/Org | |
| parent | cbeb72d06b4eb3718479eba5257a33a385f642fe (diff) | |
| parent | 63966f6375d22557d0873ba088205ba192d3f9f9 (diff) | |
| download | pandoc-4eff6076788d6852974985a0bfcbf73c4d12244e.tar.gz | |
Merge pull request #3072 from tarleb/lineblock
Read and write LineBlock elements
Diffstat (limited to 'src/Text/Pandoc/Readers/Org')
| -rw-r--r-- | src/Text/Pandoc/Readers/Org/Blocks.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Blocks.hs b/src/Text/Pandoc/Readers/Org/Blocks.hs index 82c3a6cbe..d14c894e6 100644 --- a/src/Text/Pandoc/Readers/Org/Blocks.hs +++ b/src/Text/Pandoc/Readers/Org/Blocks.hs @@ -50,7 +50,7 @@ import Text.Pandoc.Shared ( compactify', compactify'DL ) import Control.Monad ( foldM, guard, mzero, void ) import Data.Char ( isSpace, toLower, toUpper) -import Data.List ( foldl', intersperse, isPrefixOf ) +import Data.List ( foldl', isPrefixOf ) import Data.Maybe ( fromMaybe, isNothing ) import Data.Monoid ((<>)) @@ -427,7 +427,7 @@ verseBlock :: String -> OrgParser (F Blocks) verseBlock blockType = try $ do ignHeaders content <- rawBlockContent blockType - fmap B.para . mconcat . intersperse (pure B.linebreak) + fmap B.lineBlock . sequence <$> mapM parseVerseLine (lines content) where -- replace initial spaces with nonbreaking spaces to preserve |
