Implement named character entity replacement

https://html.spec.whatwg.org/multipage/syntax.html#tokenizing-character-references
This commit is contained in:
iska
2014-10-23 20:07:30 +02:00
parent e88f0ae3e3
commit 968a6aff79
6 changed files with 110 additions and 24 deletions
+1
View File
@@ -10,6 +10,7 @@
@interface HTMLTokenizerEntities : NSObject
+ (NSArray *)entityNames;
+ (NSString *)replacementForNamedCharacterEntity:(NSString *)entity;
@end