summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-08-21 20:07:36 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-08-21 20:07:36 -0700
commit1d91e2cdb380a22b8d988291d726dd1612318b80 (patch)
tree17300a2960156211fab3c06b7b85ed79ae4cd53a /src/Text/Pandoc
parentf7c14eddd81dfb89111b482cf49289d9d0135cc2 (diff)
LaTeX reader: Added o-cedilla.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index ded57df5a..028d83e24 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -681,6 +681,8 @@ cedilla 'e' = 'ȩ'
cedilla 'E' = 'Ȩ'
cedilla 'h' = 'ḩ'
cedilla 'H' = 'Ḩ'
+cedilla 'o' = 'o̧'
+cedilla 'O' = 'O̧'
cedilla c = c
hacek :: Char -> Char