NetNewsWire/Modules/Parser/Sources/HTMLParser/HTMLLink.swift

16 lines
248 B
Swift
Raw Normal View History

2024-09-21 21:16:09 +02:00
//
// HTMLLink.swift
//
//
// Created by Brent Simmons on 9/21/24.
//
import Foundation
public final class HTMLLink {
let urlString: String? // Absolute URL string
let text: String?
let title: String? // Title attribute inside anchor tag
}