aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/LaTeX.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-02-04 23:19:09 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-02-04 23:19:09 -0800
commit79f15944709d060784fdd6bd278657a48157f25a (patch)
tree5e78c25e82ef9f32f2d883cc8772c657f2e5675d /src/Text/Pandoc/Readers/LaTeX.hs
parente16d747d828fccb5d238c6d99c423ee2ac71a1ed (diff)
downloadpandoc-79f15944709d060784fdd6bd278657a48157f25a.tar.gz
Added \vspace and \hspace to latex ignored block commands.
Diffstat (limited to 'src/Text/Pandoc/Readers/LaTeX.hs')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs1
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 ()