These states are defined in the HTML standard: https://html.spec.whatwg.org/multipage/syntax.html#tokenization
19 lines
336 B
Objective-C
19 lines
336 B
Objective-C
//
|
|
// HTMLTokenizer.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 19/09/14.
|
|
// Copyright (c) 2014 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "HTMLInputStreamReader.h"
|
|
|
|
/**
|
|
* HTML Tokenizer
|
|
* https://html.spec.whatwg.org/multipage/syntax.html#tokenization
|
|
*/
|
|
@interface HTMLTokenizer : NSObject
|
|
|
|
@end
|