parse

XInclude Parse Flag

Treat the included object as text or as parsed XML. (See the W3C XInclude documentation http://www.w3.org/TR/xinclude/.)

Used on Element: <xi:include>

ValueMeaning
textIncluded object is to be treated as text.
xmlIncluded object is to be treated as XML.
Default valuexml

Example

...
<book-body>
<xi:include 
 xmlns:xi="http://www.w3.org/2001/XInclude"
 href="../BITS-samples/chocolate-samples/bits-book-part1.xml" 
 encoding="ANSI" 
 parse="xml">
<xi:fallback/></xi:include>
...</book-body>
...