Files
HTMLKit/HTMLKit/HTMLParser.m
T
2014-10-05 15:35:41 +02:00

28 lines
456 B
Objective-C

//
// HTMLParser.m
// HTMLKit
//
// Created by Iska on 04/10/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import "HTMLParser.h"
#import "HTMLParserInsertionModes.h"
#import "HTMLElement.h"
@interface HTMLParser ()
{
HTMLInsertionMode _insertionMode;
HTMLInsertionMode _originalInsertionMode;
NSMutableArray *_stackOfOpenElements;
HTMLElement *_context;
HTMLElement *_currentElement;
}
@end
@implementation HTMLParser
@end