Skip to content

Commit d60322e

Browse files
author
Ruy Minoru Ito Takata - SUPCD/CDISO/CDSSP
committed
Fix for bug #1270: Cleanup entries error 3
1 parent ed7c645 commit d60322e

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[master]
2+
- Fix for bug #1270: Cleanup entries error 3
23
- Fix for bug #919: Accents don't export to RTF (by ruy.takata)
34
- Change the CrossRef content negotiation for bibtex DOI import (by sheffien)
45
- Fix for bug #1253: Cleanup entries error 2 (by ruy.takata)

src/main/java/net/sf/jabref/imports/HTMLConverter.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,13 @@ public class HTMLConverter implements LayoutFormatter {
188188
// U+00EA ISOlat1
189189
{"235", "euml", "\\{\\\\\"\\{e\\}\\}"}, // latin small letter e with diaeresis,
190190
// U+00EB ISOlat1
191-
{"236", "igrave", "\\{\\\\`\\{\\\\i\\}\\}"}, // latin small letter i with grave,
191+
{"236", "igrave", "\\{\\\\`\\{i\\}\\}"}, // latin small letter i with grave,
192192
// U+00EC ISOlat1
193-
{"237", "iacute", "\\{\\\\'\\{\\\\i\\}\\}"}, // latin small letter i with acute,
193+
{"237", "iacute", "\\{\\\\'\\{i\\}\\}"}, // latin small letter i with acute,
194194
// U+00ED ISOlat1
195-
{"238", "icirc", "\\{\\\\\\^\\{\\\\i\\}\\}"}, // latin small letter i with circumflex,
195+
{"238", "icirc", "\\{\\\\\\^\\{i\\}\\}"}, // latin small letter i with circumflex,
196196
// U+00EE ISOlat1
197-
{"239", "iuml", "\\{\\\\\"\\{\\\\i\\}\\}"}, // latin small letter i with diaeresis,
197+
{"239", "iuml", "\\{\\\\\"\\{i\\}\\}"}, // latin small letter i with diaeresis,
198198
// U+00EF ISOlat1
199199
{"240", "eth", "\\{\\\\dh\\}"}, // latin small letter eth, U+00F0 ISOlat1
200200
{"241", "ntilde", "\\{\\\\~\\{n\\}\\}"}, // latin small letter n with tilde,
@@ -227,6 +227,8 @@ public class HTMLConverter implements LayoutFormatter {
227227
// U+00FE ISOlat1
228228
{"255", "yuml", "\\{\\\\\"\\{y\\}\\}"}, // latin small letter y with diaeresis,
229229
// U+00FF ISOlat1
230+
{"332", "Omacro", "\\{\\\\=\\{O\\}\\}"}, // the small letter o with macron
231+
{"333", "omacro", "\\{\\\\=\\{o\\}\\}"}, // the big letter O with macron
230232
{"402", "fnof", "\\$f\\$"}, // latin small f with hook = function
231233
// = florin, U+0192 ISOtech
232234

0 commit comments

Comments
 (0)