Files
2025-11-11 14:18:57 +01:00

15 lines
260 B
Go

package cellbuf
import (
"github.com/charmbracelet/colorprofile"
)
// ConvertLink converts a hyperlink to respect the given color profile.
func ConvertLink(h Link, p colorprofile.Profile) Link {
if p == colorprofile.NoTTY {
return Link{}
}
return h
}