Ignore ­ to prevent drawing hyphens everywhere
This commit is contained in:
2
entity.c
2
entity.c
@@ -44,6 +44,8 @@ conv_entity(unsigned int c)
|
|||||||
return " ";
|
return " ";
|
||||||
if (c == 0xa0)
|
if (c == 0xa0)
|
||||||
return NBSP;
|
return NBSP;
|
||||||
|
if (c == 0xad) /* SOFT HYPHEN */
|
||||||
|
return "";
|
||||||
if (c < 0x100) { /* Latin1 (ISO 8859-1) */
|
if (c < 0x100) { /* Latin1 (ISO 8859-1) */
|
||||||
if (UseAltEntity)
|
if (UseAltEntity)
|
||||||
return alt_latin1[c - 0xa0];
|
return alt_latin1[c - 0xa0];
|
||||||
|
Reference in New Issue
Block a user