[XML-SIG] XML appropiate for config files of a xml processor?

Rich Salz rsalz@caveosystems.com
Thu, 09 Nov 2000 10:19:35 -0500


You might look at the the XSLT syntax.  You might also want to look at
CDATA (section 2.7 of the XML spec)

> <tag xml="example">
>      <start>&lt;p&gt;&lt;p&gt;&lt;b&gt;</start>
>      <end>&lt;/b&gt;&lt;/p&gt;</end>
> </tag>

Becomes
	<tag xml="example">
		<start><![CDATA[<p><b>]]></start>
		<end><![CDATA[</b></p>]]></end>
	</tag>