rum-goggles/vendor/github.com/leaanthony/go-ansi-parser/options.go

26 lines
845 B
Go
Raw Normal View History

2024-02-23 16:39:16 +00:00
package ansi
// ParseOption specifies parse option.
type ParseOption struct {
ignoreUnexpectedCode bool
ansiForegroundColor string
ansiBackgroundColor string
}
// WithIgnoreInvalidCodes disables returning an error on invalid ANSI code.
func WithIgnoreInvalidCodes() ParseOption {
return ParseOption{ignoreUnexpectedCode: true}
}
// WithDefaultForegroundColor specifies default foreground code (ANSI 39).
// See ColourMap variable and foreground color codes 30-37.
func WithDefaultForegroundColor(ansiColor string) ParseOption {
return ParseOption{ansiForegroundColor: ansiColor}
}
// WithDefaultBackgroundColor specifies default foreground code (ANSI 49).
// See ColourMap variable and foreground color codes 30-37.
func WithDefaultBackgroundColor(ansiColor string) ParseOption {
return ParseOption{ansiBackgroundColor: ansiColor}
}