XML::DOM::Entity(3pm) | User Contributed Perl Documentation | XML::DOM::Entity(3pm) |
XML::DOM::Entity - An XML ENTITY in XML::DOM
XML::DOM::Entity extends XML::DOM::Node.
This node represents an Entity declaration, e.g.
<!ENTITY % draft 'INCLUDE'> <!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif>
The first one is called a parameter entity and is referenced like this: %draft; The 2nd is a (regular) entity and is referenced like this: &hatch-pic;
Not Implemented The DOM Spec says: For unparsed entities, the name of the notation for the entity. For parsed entities, this is null. (This implementation does not support unparsed entities.)
2022-10-14 | perl v5.34.0 |