Put LaTeX verse environments in blockquotes.

This commit is contained in:
John MacFarlane 2012-02-08 14:03:55 -08:00
parent 421b362b99
commit 1c432e72ea

View file

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