textblock: support escaped ' tag
authorMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 29 Mar 2016 19:38:47 +0000 (15:38 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 29 Mar 2016 19:40:12 +0000 (15:40 -0400)
while not in the official html4 spec, this was supported by all browsers
except IE during the html4 era and is now included in html5.

@fix

src/lib/evas/canvas/evas_object_textblock.c

index a30ca13..82bf141 100644 (file)
@@ -898,6 +898,7 @@ static const char escape_strings[] =
 /* most common escaped stuff */
 "&quot;\0"     "\x22\0"
 "&amp;\0"      "\x26\0"
+"&apos;\0"     "\x27\0"
 "&lt;\0"       "\x3c\0"
 "&gt;\0"       "\x3e\0"
 /* all the rest */