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>
Value | Meaning |
---|---|
text | Included object is to be treated as text. |
xml | Included object is to be treated as XML. |
Default value | xml |
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>
...