diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-02-04 23:19:09 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-02-04 23:19:09 -0800 |
commit | 79f15944709d060784fdd6bd278657a48157f25a (patch) | |
tree | 5e78c25e82ef9f32f2d883cc8772c657f2e5675d | |
parent | e16d747d828fccb5d238c6d99c423ee2ac71a1ed (diff) | |
download | pandoc-79f15944709d060784fdd6bd278657a48157f25a.tar.gz |
Added \vspace and \hspace to latex ignored block commands.
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index a60f6f235..c2b0cdd27 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -253,6 +253,7 @@ blockCommands = M.fromList $ , "hyperdef" , "noindent" , "markboth", "markright", "markleft" + , "hspace", "vspace" ] addTitle :: Inlines -> LP () |