diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2014-08-10 17:04:13 +0100 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-08-11 10:30:32 -0400 |
commit | 427466f80c3897b8341a1e576bd488be3cea77c6 (patch) | |
tree | 2a318958c54409cac9835e4d142827ff0ea47ccd /src/Text | |
parent | 4e483dbf9a15e7b9605cc80b400d5a1746735d8e (diff) | |
download | pandoc-427466f80c3897b8341a1e576bd488be3cea77c6.tar.gz |
Docx Fonts: Derives Show and Eq
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/Docx/Fonts.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/Docx/Fonts.hs b/src/Text/Pandoc/Readers/Docx/Fonts.hs index cd56eb115..b44c71412 100644 --- a/src/Text/Pandoc/Readers/Docx/Fonts.hs +++ b/src/Text/Pandoc/Readers/Docx/Fonts.hs @@ -32,6 +32,7 @@ module Text.Pandoc.Readers.Docx.Fonts (getUnicode, Font(..)) where -- | Enumeration of recognised fonts data Font = Symbol -- ^ <http://en.wikipedia.org/wiki/Symbol_(typeface) Adobe Symbol> + deriving (Show, Eq) -- | Given a font and codepoint, returns the corresponding unicode -- character |