From e148fd75474f5391a5348fd674532dbd1dc1d756 Mon Sep 17 00:00:00 2001 From: John MacFarlane <fiddlosopher@gmail.com> Date: Sat, 2 Feb 2013 19:07:11 -0800 Subject: [PATCH] Removed unneeded blanklines in pipeTable parser. --- src/Text/Pandoc/Readers/Markdown.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs index b67a30853..dc30e17ed 100644 --- a/src/Text/Pandoc/Readers/Markdown.hs +++ b/src/Text/Pandoc/Readers/Markdown.hs @@ -1142,7 +1142,6 @@ pipeTable = try $ do return (row, als) ) lines' <- sequence <$> many1 pipeTableRow - blanklines let widths = replicate (length aligns) 0.0 return $ (aligns, widths, heads, lines')