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