Mercurial > dottes
comparison abcfield.py @ 725:f9a554e858f3
Provide quoting for single and double quotes.
Stop them mucking up HTML quoting by substituting with entities.
| author | Jim Hague <jim.hague@acm.org> |
|---|---|
| date | Wed, 11 Oct 2017 17:03:29 +0100 |
| parents | f8ab14cc9d8d |
| children | 833e6185b6a2 |
comparison
equal
deleted
inserted
replaced
| 724:be87f9a027f1 | 725:f9a554e858f3 |
|---|---|
| 98 | 98 |
| 99 # Ligatures | 99 # Ligatures |
| 100 "AE" : ("Æ", "\\AE"), | 100 "AE" : ("Æ", "\\AE"), |
| 101 "ae" : ("æ", "\\ae"), | 101 "ae" : ("æ", "\\ae"), |
| 102 "ss" : ("ß", "\\ss"), | 102 "ss" : ("ß", "\\ss"), |
| 103 | |
| 104 # Quote marks | |
| 105 "''" : ("'", "'"), | |
| 106 "'\"" : (""", "\""), | |
| 103 } | 107 } |
| 104 | 108 |
| 105 abckeys = { | 109 abckeys = { |
| 106 "m": "Minor", | 110 "m": "Minor", |
| 107 "min": "Minor", | 111 "min": "Minor", |
