NetNewsWire/Modules/Parser/Sources/HTMLParser/HTMLLink.swift
2024-09-21 12:16:09 -07:00

16 lines
248 B
Swift

//
// 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
}