diff --git a/src/Text/Pandoc/Writers/Shared.hs b/src/Text/Pandoc/Writers/Shared.hs index 42611abfa..ba2fe6984 100644 --- a/src/Text/Pandoc/Writers/Shared.hs +++ b/src/Text/Pandoc/Writers/Shared.hs @@ -679,6 +679,7 @@ toSubscript '-' = Just '\x208B' toSubscript '=' = Just '\x208C' toSubscript '(' = Just '\x208D' toSubscript ')' = Just '\x208E' +toSubscript '\x2212' = Just '\x208B' -- unicode minus toSubscript c | c >= '0' && c <= '9' = Just $ chr (0x2080 + (ord c - 48))