mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-27 03:21:26 +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
10 lines
225 B
XML
10 lines
225 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE doc [
|
|
<!ELEMENT doc ((a | b)+ , c , d)*>
|
|
<!ELEMENT a (#PCDATA)>
|
|
<!ELEMENT b (#PCDATA)>
|
|
<!ELEMENT c (#PCDATA)>
|
|
<!ELEMENT d (#PCDATA)>
|
|
]>
|
|
<doc><b>This</b><c> is a</c><d> valid document</d></doc>
|