Add apos character entity (STR #54)

pull/193/head
Michael R Sweet 17 years ago
parent 30feac1369
commit 7f26d51318
  1. 1
      CHANGES
  2. 3
      mxml-entity.c

@ -3,6 +3,7 @@ CHANGES - 2007-09-09
CHANGES IN Mini-XML 2.3.1
- Added support for the apos character entity (STR #54)
- Fixed whitespace detection with Unicode characters (STR
#48)
- mxmlWalkNext() and mxmlWalkPrev() did not work correctly

@ -4,7 +4,7 @@
* Character entity support code for Mini-XML, a small XML-like
* file parsing library.
*
* Copyright 2003-2005 by Michael Sweet.
* Copyright 2003-2007 by Michael Sweet.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@ -245,6 +245,7 @@ default_callback(const char *name) /* I - Entity name */
{ "amp", '&' },
{ "and", 8743 },
{ "ang", 8736 },
{ "apos", '\'' },
{ "aring", 229 },
{ "asymp", 8776 },
{ "atilde", 227 },

Loading…
Cancel
Save