XSLT Escape specific Node
I would like to take the "html" nodes in a document and replace them with escape characters to store the entire note in a table. (any other suggestions).
Source is an Infopath document.
<my:AdditionalIssues>
<my:IssueFailure>
<html xmlns="http://www.w3.org/1999/xhtml" xml:space="preserve"><div>Issue one</div></html>
</my:IssueFailure>
.....
</my:AdditionalIssues>
Would look like
<my:AdditionalIssues>
<my:IssueFailure>
<html xmlns="http://www.w3.org/1999/xhtml" xml:space="preserve"><div>Issue one</div></html>
</my:IssueFailure>
.....
</my:AdditionalIssues>
|