Add class with Named Character Reference dictionary

https://html.spec.whatwg.org/multipage/syntax.html#named-character-references
This commit is contained in:
iska
2014-10-15 22:41:54 +02:00
parent 5597323fbf
commit e88f0ae3e3
3 changed files with 2300 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
//
// HTMLTokenizerEntities.h
// HTMLKit
//
// Created by Iska on 11/10/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HTMLTokenizerEntities : NSObject
+ (NSString *)replacementForNamedCharacterEntity:(NSString *)entity;
@end