blob: 97e760a3bfc8debcf311b904862217b78aef37e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package termenv
// Hyperlink creates a hyperlink using OSC8.
func Hyperlink(link, name string) string {
return output.Hyperlink(link, name)
}
// Hyperlink creates a hyperlink using OSC8.
func (o *Output) Hyperlink(link, name string) string {
return OSC + "8;;" + link + ST + name + OSC + "8;;" + ST
}
|