mirror of https://github.com/cheat/cheat.git
22 lines
556 B
Go
22 lines
556 B
Go
// Package display implement functions pertaining to writing formatted
|
|
// cheatsheet content to stdout, or alternatively the system pager.
|
|
package display
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cheat/cheat/internal/config"
|
|
)
|
|
|
|
// Faint returns a faintly-colored string that's used to de-prioritize text
|
|
// written to stdout
|
|
func Faint(str string, conf config.Config) string {
|
|
// make `str` faint only if colorization has been requested
|
|
if conf.Colorize {
|
|
return fmt.Sprintf("\033[2m%s\033[0m", str)
|
|
}
|
|
|
|
// otherwise, return the string unmodified
|
|
return str
|
|
}
|