Removed unneeded 'try' in multilineRow.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@938 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
ce800f7121
commit
06a5a0e235
1 changed files with 1 additions and 1 deletions
|
@ -528,7 +528,7 @@ rawTableLine indices = do
|
|||
tableLine indices = rawTableLine indices >>= mapM (parseFromString (many plain))
|
||||
|
||||
-- Parse a multiline table row and return a list of blocks (columns).
|
||||
multilineRow indices = try $ do
|
||||
multilineRow indices = do
|
||||
colLines <- many1 (rawTableLine indices)
|
||||
optional blanklines
|
||||
let cols = map unlines $ transpose colLines
|
||||
|
|
Loading…
Add table
Reference in a new issue