git: 9front

Download patch

ref: 5d9083dca82597b7692e1e0b7ff33ff6255a6568
parent: 7b977c7290db3da3d6faa94606a8b7f1e7d39a1b
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Sat Aug 3 01:45:40 EDT 2013

libhtml: handle &apos; character reference

the &apos; is not strickly html, but can appear in xhtml files.

--- a/sys/src/libhtml/lex.c
+++ b/sys/src/libhtml/lex.c
@@ -320,6 +320,7 @@
 	{L"amp", 38},
 	{L"and", 8743},
 	{L"ang", 8736},
+	{L"apos", 39},
 	{L"aring", 229},
 	{L"asymp", 8776},
 	{L"atilde", 227},
--