1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<?xml version="1.0"?>
<?my_pi ?>
<!-- top level comment -->
<html xmlns:top="http://top-levelns">
<top:h1> Big & A A header</top:h1>
<manu:h2 xmlns:manu="http://manuns"
a1=" a b " a2="     a b  " />
<xml:img xml:src='A&toto.gif' />
<!-- an invalid comment -->
<empty_tag xmlns="http://foons" attr='foo' />
<full_tag attr="foo"><![CDATA[<greeting]]>full</full_tag>
<!-- A comment in the middle -->
<good xmlns:n1="http://www.w3.org"
xmlns="http://www.w3.org"
n1:a="1" a="2" > <bad><bad>Test</bad></bad></good>
</html>
<!-- Activate this to test that only one single root child is allowed
<foo2>
</foo2>
-->
|