Really fast C ++ html parser

I am making an html function for highlighting text in C ++; the program should be REALLY fast: I need to extract these functions in ms to the html page, and memory usage should be good, and finally Unicode encoding will be nice.

I know how difficult it is to have all of this, but I want the parser to be closer to these things.

Anyone have a suggestion?

+3
source share
2 answers

First, I ran HTML through Tidy , and then I used the XML / XHTML ( Xerces ) parser to parse the code.

+1
source
+1

Source: https://habr.com/ru/post/1740361/


All Articles