How to set the od:xpath to xHtmlPropertyData&od:ContentType=application/xhtml+xml. I need to insert html content using content control data binding method.
I added a new binding variable and binded the <address> node's xpath to it. The content of the address node is html value. The document.xml didn't have od:path as od:xpath=xHtmlPropertyData&od:ContentType=application/xhtml+xml.
My xml node is
<person>
<lastname>my last name</lastname>
<firstname>my First name</firstname>
<age>30</age>
<address>
<h1>my address, city, state. </h1>
</address>
</person>
I am listing the steps I ...