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/)
OPTIONAL (defaults to xml) on element: <xi:include>
Value Meaning
text Included object is to be treated as text.
xml Included object is to be treated as XML.
Default value xml
Tagged Sample

The Book Part being included should be considered a parsed XML file.

...
<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>
...