Skip to content

Commit

Permalink
LaTeX reader: allow blank space between braced arguments of commands.
Browse files Browse the repository at this point in the history
For example

    \foo
    {bar}
    {baz}

Closes #2592.
  • Loading branch information
jgm committed Dec 22, 2015
1 parent 46e38d0 commit 35e0544
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Text/Pandoc/Readers/LaTeX.hs
Expand Up @@ -132,7 +132,9 @@ comment = do
return ()

bgroup :: LP ()
bgroup = () <$ char '{'
bgroup = try $ do
skipMany (spaceChar <|> try (newline <* notFollowedBy blankline))
() <$ char '{'
<|> () <$ controlSeq "bgroup"
<|> () <$ controlSeq "begingroup"

Expand Down

0 comments on commit 35e0544

Please sign in to comment.