func applyLink()

in HuggingChat-Mac/Models/ModelAttributedStringParser.swift [401:407]


    func applyLink(withURL url: URL?) {
        addAttribute(.foregroundColor, value: NSColor.systemBlue)

        if let url = url {
            addAttribute(.link, value: url)
        }
    }