summaryrefslogtreecommitdiffstats
path: root/src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs')
-rw-r--r--src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs b/src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs
index 3588c9d..9890ab6 100644
--- a/src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs
+++ b/src/Text/Pandoc/Filter/Plot/Renderers/Matplotlib.hs
@@ -60,8 +60,8 @@ plt.savefig(r"#{fname}", dpi=#{dpi}, transparent=#{transparent}, bbox_inches=#{t
|]
where
attrs = M.fromList extraAttrs
- tight_ = readBool $ M.findWithDefault "False" "tight" attrs
- transparent_ = readBool $ M.findWithDefault "False" "transparent" attrs
+ tight_ = readBool $ M.findWithDefault "False" (T.pack $ show MatplotlibTightBBoxK) attrs
+ transparent_ = readBool $ M.findWithDefault "False" (T.pack $ show MatplotlibTransparentK) attrs
tightBox = if tight_ then ("'tight'" :: Text) else ("None" :: Text)
transparent = if transparent_ then ("True" :: Text) else ("False" :: Text)