25 lines
461 B
Go
25 lines
461 B
Go
|
package underline
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"regexp"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
type export string
|
||
|
|
||
|
var Export = export("underline")
|
||
|
|
||
|
func (syn export) Regex() *regexp.Regexp {
|
||
|
return regexp.MustCompile(`(?m)_([^_]+)_`)
|
||
|
}
|
||
|
|
||
|
func (syn export) Transform(args ...string) (string, error) {
|
||
|
// no arg, empty -> ignore
|
||
|
if len(args) < 1 || len(args[0]) < 1 {
|
||
|
return "", nil
|
||
|
}
|
||
|
|
||
|
return fmt.Sprintf("\x1b[4m%s\x1b[24m", strings.Replace(args[0], "\x1b[0m", "\x1b[0m\x1b[4m", -1)), nil
|
||
|
}
|