mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-26 10:03:34 +03:00
1731d6ae0a
- tree.c result/ result/noent/: trying to get 52712 solved, this also made me clean up the fact that XML output in general should not add formating blanks by default, this changed the output of a few tests Daniel
13 lines
354 B
XML
13 lines
354 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE EXAMPLE SYSTEM "example.dtd" [
|
|
<!ENTITY xml "Extensible Markup Language">
|
|
<!ENTITY title PUBLIC "-//MY-TITLE//FR" "title.xml">
|
|
<!ENTITY image SYSTEM "img.gif" NDATA GIF>
|
|
]>
|
|
<EXAMPLE>
|
|
|
|
<title>my title</title>
|
|
|
|
This text is about XML, the Extensible Markup Language and this is an embedded <IMG src="image"/>
|
|
</EXAMPLE>
|