LaTeX reader: allow spaces around \graphicspath arguments.

Closes #4698.
This commit is contained in:
John MacFarlane 2018-06-12 09:25:42 -07:00
parent b6305a63cd
commit 1e45bb0041

View file

@ -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