OOXML Strict/Transitional #13
-
Hi Can the validator differentiate between and validate OOXML Strict and OOXML Transitional, so that I know which one of the latter my file is and whether it is valid/well-formed according to strict or transitional rules? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @Asbjoedt , Currently the validator doesn't distinguish between OOXML Strict and Transitional. It could be possible; it depends on whether or not the validation API from the Open Xml SDK can make that distinction. The validator works by using .Net runtime to call a .Net Project that uses the Open Xml SDK's validation to validate the file. If the SDK can make that distinction, then it could be added to the return data to the validator and displayed with the other errors. I don't know if the Open Xml SDK can make the distinction and, unfortunately, I don't have a lot of bandwidth right now to work on this. But if you can do some research or even better, submit a pull request, I'd be happy to add this functionality. |
Beta Was this translation helpful? Give feedback.
Hi @Asbjoedt ,
Currently the validator doesn't distinguish between OOXML Strict and Transitional. It could be possible; it depends on whether or not the validation API from the Open Xml SDK can make that distinction.
The validator works by using .Net runtime to call a .Net Project that uses the Open Xml SDK's validation to validate the file. If the SDK can make that distinction, then it could be added to the return data to the validator and displayed with the other errors.
I don't know if the Open Xml SDK can make the distinction and, unfortunately, I don't have a lot of bandwidth right now to work on this. But if you can do some research or even better, submit a pull request, I'd be happ…