Plain writer: handle superscript unicode minus.
Closes #7276. Note: currently we still get unwanted white space around the minus; this needs to be addressed with a change in texmath.
This commit is contained in:
parent
0217ae2a4f
commit
edca1d1656
1 changed files with 1 additions and 0 deletions
|
@ -394,6 +394,7 @@ toSuperscript '2' = Just '\x00B2'
|
|||
toSuperscript '3' = Just '\x00B3'
|
||||
toSuperscript '+' = Just '\x207A'
|
||||
toSuperscript '-' = Just '\x207B'
|
||||
toSuperscript '\x2212' = Just '\x207B' -- unicode minus
|
||||
toSuperscript '=' = Just '\x207C'
|
||||
toSuperscript '(' = Just '\x207D'
|
||||
toSuperscript ')' = Just '\x207E'
|
||||
|
|
Loading…
Add table
Reference in a new issue