Implement a HTML Tree Visitor

The tree visitor walks the DOM in tree order and calls the provided
node visitor upon entring and leaving a node.
This commit is contained in:
iska
2019-07-31 21:58:07 +02:00
parent ad2790b653
commit 12276e91b3
10 changed files with 383 additions and 5 deletions
+1
View File
@@ -16,6 +16,7 @@ extern const unsigned char HTMLKitVersionString[];
#import "HTMLDOM.h"
#import "HTMLParser.h"
#import "HTMLSerializer.h"
#import "HTMLKitErrorDomain.h"
#import "HTMLOrderedDictionary.h"