mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

This should only be done in xmlParseReference. The handling of undeclared entities is still somewhat inconsistent. In element content we create references even if entity substitution is enabled. In attribute values undeclared entities are always ignored.
8 lines
182 B
XML
8 lines
182 B
XML
<?xml version="1.0"?>
|
|
<!-- Having an external DTD makes undeclared entities a warning. -->
|
|
<!DOCTYPE doc SYSTEM "foo">
|
|
<doc>
|
|
<elem attr=""/>
|
|
<elem>&undeclared;</elem>
|
|
</doc>
|