LaTeX reader: Fixed parsing of paragraphs beginning with a group.
Previously a paragraph beginning ``` {``}hello{''} ``` would be parsed as two paragraphs. Closes #606.
This commit is contained in:
parent
37c29bfa3d
commit
bc4f3af2c3
1 changed files with 1 additions and 1 deletions
|
@ -203,8 +203,8 @@ block = (mempty <$ comment)
|
|||
<|> environment
|
||||
<|> mempty <$ macro -- TODO improve macros, make them work everywhere
|
||||
<|> blockCommand
|
||||
<|> grouped block
|
||||
<|> paragraph
|
||||
<|> grouped block
|
||||
<|> (mempty <$ char '&') -- loose & in table environment
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue