Remove redundant center variable for reveal.js.

This is no longer needed with the updates to the template in da139313d2
This commit is contained in:
Andrew Dunning 2015-11-09 09:38:12 -05:00
parent e0c83f74f3
commit 6c27e5f2c1

View file

@ -193,9 +193,6 @@ pandocToHtml opts (Pandoc meta blocks) = do
defField "revealjs-url" ("reveal.js" :: String) $
defField "s5-url" ("s5/default" :: String) $
defField "html5" (writerHtml5 opts) $
defField "center" (case lookupMeta "center" meta of
Just (MetaBool False) -> False
_ -> True) $
metadata
return (thebody, context)