LaTeX reader: allow spaces around \graphicspath
arguments.
Closes #4698.
This commit is contained in:
parent
b6305a63cd
commit
1e45bb0041
1 changed files with 2 additions and 1 deletions
|
@ -2423,7 +2423,8 @@ coloredBlock stylename = try $ do
|
|||
|
||||
graphicsPath :: PandocMonad m => LP m Blocks
|
||||
graphicsPath = do
|
||||
ps <- map toksToString <$> (bgroup *> manyTill braced egroup)
|
||||
ps <- map toksToString <$>
|
||||
(bgroup *> spaces *> manyTill (braced <* spaces) egroup)
|
||||
getResourcePath >>= setResourcePath . (++ ps)
|
||||
return mempty
|
||||
|
||||
|
|
Loading…
Reference in a new issue