aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Txt2Tags.hs
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2017-05-17 01:52:48 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2017-05-17 11:02:38 +0300
commit55ce47d050fd6e1a38db765c7632e1989d60854d (patch)
treec80e3eba315d3ee57ae331c239f37dd4b78472cc /src/Text/Pandoc/Readers/Txt2Tags.hs
parentfbce4228a52de9bba5a30197b165afc66a5a83dc (diff)
downloadpandoc-55ce47d050fd6e1a38db765c7632e1989d60854d.tar.gz
Move anyLineNewline to Parsing.hs
Diffstat (limited to 'src/Text/Pandoc/Readers/Txt2Tags.hs')
-rw-r--r--src/Text/Pandoc/Readers/Txt2Tags.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Readers/Txt2Tags.hs b/src/Text/Pandoc/Readers/Txt2Tags.hs
index 33f785109..d8b6c016c 100644
--- a/src/Text/Pandoc/Readers/Txt2Tags.hs
+++ b/src/Text/Pandoc/Readers/Txt2Tags.hs
@@ -277,9 +277,6 @@ listContinuation markerLength = try $
<*> many blankline)
where listLine = try $ indentWith markerLength *> anyLineNewline
-anyLineNewline :: T2T String
-anyLineNewline = (++ "\n") <$> anyLine
-
indentWith :: Int -> T2T String
indentWith n = count n space