The CDATA Section | |||
Sometimes you might want to prevent a parser from interpreting a portion of an XML document. For example, you might want to display the XML code in another XML document without interpretation. In this case, you can use a CDATA section. A CDATA section works similar to <pre>...</pre> in HTML. All white spaces and characters within the CDATA section are not interpreted as XML code. The syntax of a CDATA section is: <![CDATA[ and ends with ]]> For example: <![CDATA[text and markup that will not be parsed]]> Note that the CDATA sections cannot be nested. |
|
||
Click the Next button to continue. |