diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-11-12 16:02:25 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2017-11-12 16:06:22 +0300 |
commit | f13f142945a1a05ef7b54b720b1670d16a051225 (patch) | |
tree | c3b07a1e7d9a8e5bf7460b6768bfbb7ee8216edc /src/Text/Pandoc | |
parent | af06d526095d9fb3156e8995ceb85ab78edc8061 (diff) | |
download | pandoc-f13f142945a1a05ef7b54b720b1670d16a051225.tar.gz |
Add emacs extension
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Extensions.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Extensions.hs b/src/Text/Pandoc/Extensions.hs index b1b8336ef..ef05a597e 100644 --- a/src/Text/Pandoc/Extensions.hs +++ b/src/Text/Pandoc/Extensions.hs @@ -153,6 +153,7 @@ data Extension = | Ext_smart -- ^ "Smart" quotes, apostrophes, ellipses, dashes | Ext_old_dashes -- ^ -- = em, - before number = en | Ext_spaced_reference_links -- ^ Allow space between two parts of ref link + | Ext_emacs -- ^ Try to emulate Emacs Muse instead of Amusewiki deriving (Show, Read, Enum, Eq, Ord, Bounded, Data, Typeable, Generic) instance ToJSON Extension where |