From e8948ec3a397d6e78e64902b99bb2f7a16facd18 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Fri, 8 Nov 2019 15:53:20 -0700 Subject: entities: support ' entity The XHTML standard encompasses the XML standard. From the beginning, the XML standard [1] has always included required support for five character entities: 1. the ampersand (&) as & 2. the left angle bracket (<) as < 3. the right angle bracket (>) as > 4. the double-quote character (") as " 5. the apostrophe or single-quote character (') as ' See section "2.4 Character Data and Markup" of the XML standard [1] for further details. Add support for the character single-quote character entity (') in order to fully support XHTML pages. [1]: https://www.w3.org/TR/REC-xml/ Signed-off-by: Kyle J. McKay --- entity.tab | 2 ++ 1 file changed, 2 insertions(+) (limited to 'entity.tab') diff --git a/entity.tab b/entity.tab index 130ae2d..d481312 100644 --- a/entity.tab +++ b/entity.tab @@ -7,6 +7,8 @@ amp 0x26 AMP 0x26 quot 0x22 QUOT 0x22 +apos 0x27 +APOS 0x27 nbsp 0xA0 NBSP 0xA0 iexcl 0xA1 -- cgit v1.2.3