mirror of
https://github.com/ericchiang/pup
synced 2025-02-17 17:52:01 +00:00
commit
d0b9bf4bb1
@ -5,6 +5,7 @@ import (
|
|||||||
"code.google.com/p/go.net/html/atom"
|
"code.google.com/p/go.net/html/atom"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
|
"github.com/mattn/go-colorable"
|
||||||
"regexp"
|
"regexp"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -21,6 +22,10 @@ var (
|
|||||||
postWhitespace = regexp.MustCompile(`\s+$`)
|
postWhitespace = regexp.MustCompile(`\s+$`)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
color.Output = colorable.NewColorableStdout()
|
||||||
|
}
|
||||||
|
|
||||||
func printIndent(level int) {
|
func printIndent(level int) {
|
||||||
for ; level > 0; level-- {
|
for ; level > 0; level-- {
|
||||||
fmt.Print(indentString)
|
fmt.Print(indentString)
|
||||||
|
Loading…
Reference in New Issue
Block a user