diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2019-11-10 10:57:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 10:57:02 +0000 |
commit | 2f7cf64eac70f413852f066eb6760ccd66b0bb1d (patch) | |
tree | 3df5fc7e8f04ef3b9a0316731952db54043daf57 /indep.c | |
parent | Update ChangeLog (diff) | |
parent | entities: support ' entity (diff) | |
download | w3m-2f7cf64eac70f413852f066eb6760ccd66b0bb1d.tar.gz w3m-2f7cf64eac70f413852f066eb6760ccd66b0bb1d.zip |
Merge pull request #122 from mackyle/master
entities: support ' entity
Diffstat (limited to '')
-rw-r--r-- | indep.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,7 +19,7 @@ unsigned char QUOTE_MAP[0x100] = { /* DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US */ 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, /* SPC ! " # $ % & ' ( ) * + , - . / */ - 24, 72, 76, 40, 8, 40, 41, 72, 72, 72, 72, 40, 72, 8, 0, 64, + 24, 72, 76, 40, 8, 40, 41, 77, 72, 72, 72, 40, 72, 8, 0, 64, /* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 72, 74, 72, 75, 40, /* @ A B C D E F G H I J K L M N O */ @@ -47,7 +47,7 @@ char *HTML_QUOTE_MAP[] = { "<", ">", """, - NULL, + "'", NULL, NULL, }; @@ -462,7 +462,7 @@ getescapechar(char **str) q = p; for (p++; IS_ALNUM(*p); p++) ; q = allocStr(q, p - q); - if (strcasestr("lt gt amp quot nbsp", q) && *p != '=') { + if (strcasestr("lt gt amp quot apos nbsp", q) && *p != '=') { /* a character entity MUST be terminated with ";". However, * there's MANY web pages which uses < , > or something * like them as <, >, etc. Therefore, we treat the most |