/// A contiguous run of text sharing the same style and link. public struct InlineSpan: Equatable, Hashable, Sendable, Codable { public var text: String public var styles: InlineStyle public var link: InlineLink? public init(text: String, styles: InlineStyle = [], link: InlineLink? = nil) { self.text = text self.styles = styles self.link = link } }