diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-02 19:07:11 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-02 19:07:11 -0800 |
commit | e148fd75474f5391a5348fd674532dbd1dc1d756 (patch) | |
tree | 5d2663cee09a62aa7533469752dbab6c86c9537b /src | |
parent | a6c167125fb423b365940401b45e5a95791b2fcf (diff) | |
download | pandoc-e148fd75474f5391a5348fd674532dbd1dc1d756.tar.gz |
Removed unneeded blanklines in pipeTable parser.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/Markdown.hs | 1 |
1 files changed, 0 insertions, 1 deletions
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') |