Refactor all private extensions into own separate categories

This commit is contained in:
iska
2016-11-27 03:12:58 +01:00
parent 6fdc7ff85b
commit 9df89043d3
9 changed files with 112 additions and 16 deletions
+23
View File
@@ -0,0 +1,23 @@
//
// HTLMLParser+Private.h
// HTMLKit
//
// Created by Iska on 27/11/16.
// Copyright © 2016 BrainCookie. All rights reserved.
//
#import "HTMLParser.h"
#import "HTMLElement.h"
/**
Private HTML Parser properties & methods which are not intended for public API.
*/
@interface HTMLParser (Private)
/**
The adjusted current node in the context of HTML parsing as described in:
https://html.spec.whatwg.org/#adjusted-current-node
*/
@property (nonatomic, strong, readonly) HTMLElement *adjustedCurrentNode;
@end