diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-10-03 16:03:40 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-10-03 16:03:40 -0700 |
commit | 421845202d903a0db13af30cd3d492162357ae3b (patch) | |
tree | 29cdb34ee49389faa49f31d7844bb8860125bc2b | |
parent | 68c02e1d016cafd5d34437a5e4ef9d8f1badcf86 (diff) | |
download | pandoc-421845202d903a0db13af30cd3d492162357ae3b.tar.gz |
FIxed typo: Ext_superscript, Ext_subscript.
-rw-r--r-- | src/Text/Pandoc/Options.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs index 09228705e..5085785fd 100644 --- a/src/Text/Pandoc/Options.hs +++ b/src/Text/Pandoc/Options.hs @@ -231,8 +231,8 @@ multimarkdownExtensions = Set.fromList -- these options we don't have full support for MMD -- superscripts and subscripts, but there's no reason -- not to include these: - , Ext_superscripts - , Ext_subscripts + , Ext_superscript + , Ext_subscript ] strictExtensions :: Set Extension |