I am using XercesLib c++ library to parse html file. In my case html file may have angle brackets inside tag content.
<math>
<mo> < <mo>
</math>
Now XercesLib fail to parse the content of mo tag, It gives me empty output, if any tag has non escaped characters.
I can not tell source to provide escaped input file because same file can be parsed by some JavaScript library (MathJAx) without any problem.
How to fix this problem in XercesLib?