aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/LaTeX.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-02-08 14:03:55 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-02-08 14:03:55 -0800
commit1c432e72ea175f5e6d2e8888ba00904d3fb45771 (patch)
treef1a6e452524497a570848f179dab058597a92a69 /src/Text/Pandoc/Readers/LaTeX.hs
parent421b362b990b0ad9373b945c7cdb0c0fb95e463c (diff)
downloadpandoc-1c432e72ea175f5e6d2e8888ba00904d3fb45771.tar.gz
Put LaTeX verse environments in blockquotes.
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 2240a008d..ba5676619 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -673,6 +673,7 @@ environments = M.fromList
, ("tabular", env "tabular" simpTable)
, ("quote", blockQuote <$> env "quote" blocks)
, ("quotation", blockQuote <$> env "quotation" blocks)
+ , ("verse", blockQuote <$> env "verse" blocks)
, ("itemize", bulletList <$> listenv "itemize" (many item))
, ("description", definitionList <$> listenv "description" (many descItem))
, ("enumerate", ordered_list)