mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 16:20:53 +01:00
27 lines
534 B
Objective-C
Executable File
27 lines
534 B
Objective-C
Executable File
//
|
|
// NSString+RSParser.h
|
|
// RSParser
|
|
//
|
|
// Created by Brent Simmons on 9/25/15.
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSString (RSParser)
|
|
|
|
- (NSString *)rsparser_stringByDecodingHTMLEntities;
|
|
|
|
/// Returns a copy of \c self with <, >, and & entity-encoded.
|
|
@property (readonly, copy) NSString *rsparser_stringByEncodingRequiredEntities;
|
|
|
|
- (NSString *)rsparser_md5Hash;
|
|
|
|
- (BOOL)rsparser_contains:(NSString *)s;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|