- The Token classes are all defined in one single header right now and do not include an implmentation. - The Parser class is currently only a stub HTML Tokenization Spec: https://html.spec.whatwg.org/multipage/syntax.html#tokenization
16 lines
231 B
Objective-C
16 lines
231 B
Objective-C
//
|
|
// HTMLParser.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 04/10/14.
|
|
// Copyright (c) 2014 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface HTMLParser : NSObject
|
|
|
|
- (id)adjustedCurrentNode;
|
|
|
|
@end
|