Files
HTMLKit/HTMLKit/HTMLParser.h
T
iska 17f2f32350 Add implementation for HTML Tokenization
- 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
2014-10-04 23:30:32 +02:00

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