Continue progress on porting OPML code to Swift.

This commit is contained in:
Brent Simmons
2024-08-25 22:00:27 -07:00
parent 466fd78297
commit 0f8c529d0d
5 changed files with 50 additions and 27 deletions

View File

@@ -9,12 +9,12 @@ import Foundation
public struct HTMLTag: Sendable {
public enum HTMLTagType {
public enum TagType {
case link
case meta
}
public let tagType: HTMLTagType
public let tagType: TagType
public let attributes: [String: String]?
public init(tagType: TagType, attributes: [String : String]?) {