Files
HTMLKit/HTMLKit/HTMLTokenizerEntities.h
T
iska 2fa0e793e0 Replace dictionary with two arrays for Named Entity replacement
Currently the entity name is binary-searched and its replacement-value is accessed via found index
2014-10-31 18:25:54 +01:00

17 lines
301 B
Objective-C

//
// HTMLTokenizerEntities.h
// HTMLKit
//
// Created by Iska on 11/10/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HTMLTokenizerEntities : NSObject
+ (NSArray *)entities;
+ (NSString *)replacementAtIndex:(NSUInteger)index;
@end