diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-08-12 13:14:27 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-08-12 13:14:27 -0700 |
commit | 78e61cedd0ffd8a3183a1feae1949243534def1d (patch) | |
tree | 6a9d57a8303ed6d6f08b2c0510fc51a278f35485 /src | |
parent | f035f0ffe3ef70abb6fa3ad0e39ac0f9c1f45c5e (diff) | |
download | pandoc-78e61cedd0ffd8a3183a1feae1949243534def1d.tar.gz |
Added Encl, Glossary to Term
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Translations.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Translations.hs b/src/Text/Pandoc/Translations.hs index e2091f0a8..57fad3386 100644 --- a/src/Text/Pandoc/Translations.hs +++ b/src/Text/Pandoc/Translations.hs @@ -69,11 +69,13 @@ data Term = | Table | Part | Page - | Proof | See | SeeAlso + | Encl | Cc | To + | Proof + | Glossary deriving (Show, Eq, Ord, Generic, Enum, Read) newtype Translations = Translations (M.Map Term String) |