Ignore Elements
Check allows user to specify XPath expressions for elements to ignore during the conversion check. Multiple XPaths can be separated by commas.
CLI:
Bash
java -jar deltanova-year.x.y.z.jar check docx -f a.docx xml -f b.xml \
ignoreElements="/root/metadata,//comment"
REST:
JSON
{
"inputA": { "type": "file", "path": "a.docx", "dxFormat": "docx" },
"inputB": { "type": "file", "path": "b.xml", "dxFormat": "xml" },
"ignoreElements": "/root/metadata,//comment"
}