Make RSParser a local module and rename it to Parser.

This commit is contained in:
Brent Simmons
2024-04-02 21:43:06 -07:00
parent 3859b8ff45
commit 40abf257a6
178 changed files with 37543 additions and 105 deletions

View File

@@ -0,0 +1,24 @@
//
// RSHTMLMetadataParser.h
// RSParser
//
// Created by Brent Simmons on 3/6/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
@import Foundation;
@class RSHTMLMetadata;
@class ParserData;
NS_ASSUME_NONNULL_BEGIN
@interface RSHTMLMetadataParser : NSObject
+ (RSHTMLMetadata *)HTMLMetadataWithParserData:(ParserData *)parserData;
@end
NS_ASSUME_NONNULL_END