12276e91b3
The tree visitor walks the DOM in tree order and calls the provided node visitor upon entring and leaving a node.
29 lines
621 B
Objective-C
29 lines
621 B
Objective-C
//
|
|
// HTMLKit.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 15/09/14.
|
|
// Copyright (c) 2014 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
//! Project version number for HTMLKit.
|
|
extern double HTMLKitVersionNumber;
|
|
|
|
//! Project version string for HTMLKit.
|
|
extern const unsigned char HTMLKitVersionString[];
|
|
|
|
#import "HTMLDOM.h"
|
|
#import "HTMLParser.h"
|
|
#import "HTMLSerializer.h"
|
|
#import "HTMLKitErrorDomain.h"
|
|
#import "HTMLOrderedDictionary.h"
|
|
|
|
#import "CSSSelectors.h"
|
|
#import "CSSSelectorParser.h"
|
|
#import "CSSNthExpressionParser.h"
|
|
|
|
#import "NSString+HTMLKit.h"
|
|
#import "NSCharacterSet+HTMLKit.h"
|