From cb852af5066327d3a6db0809db1f7f69d8007fda Mon Sep 17 00:00:00 2001 From: Gavin Kistner Date: Thu, 25 Sep 2014 20:55:45 -0600 Subject: [PATCH] Hexadecimal entities are still limited to ASCII values (� - ) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69e5420..7689983 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ In this case no table will have a `parent` attribute, elements will not have the - ` 5 < 6 ` is seen as valid text contents - No support for custom entity expansion other than the standard XML entities (`< > " ' &`) and numeric ASCII entities - (e.g. ` `) + (e.g. ` ` or `<`) - XML Declarations (``) are incorrectly reported as Processing Instructions - No support for DTDs @@ -158,7 +158,7 @@ In this case no table will have a `parent` attribute, elements will not have the ## History ### v0.6.1 2014-Sep-25 -+ Fixes Issue #6, adding support for hexadecimal entities (e.g. `☺`). (Thanks Leorex/Ben Bishop) ++ Fixes Issue #6, adding support for ASCII hexadecimal entities (e.g. `<`). (Thanks Leorex/Ben Bishop) ### v0.6 2014-Apr-18 + Fixes Issue #5 (and more): Namespace prefixes defined on element are now properly applied to the element itself and any attributes using them when the definitions appear later in source than the prefix usage. (Thanks Oliver Kroth.)