aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-08-29 00:11:37 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-08-29 00:11:37 +0000
commit40b870375dbb593e06f8998feadbff4818d09806 (patch)
tree43438b2a988a4a63878ac364de780e5706be20e0
parent3edf5834e836a71327d8a607a56dbcbd46deb745 (diff)
downloadpandoc-40b870375dbb593e06f8998feadbff4818d09806.tar.gz
Minor reformatting.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@949 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index 82a1d6bb4..457f334b4 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -772,9 +772,8 @@ endline = try $ do
notFollowedBy blankline
st <- getState
if stateStrict st
- then do
- notFollowedBy emailBlockQuoteStart
- notFollowedBy (char '#') -- atx header
+ then do notFollowedBy emailBlockQuoteStart
+ notFollowedBy (char '#') -- atx header
else return ()
-- parse potential list-starts differently if in a list:
if stateParserContext st == ListItemState