You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wuzz/formatter/html.go

27 lines
429 B
Go

package formatter
import (
"bytes"
"io"
"github.com/x86kernel/htmlcolor"
)
type htmlFormatter struct {
textFormatter
}
func (f *htmlFormatter) Format(writer io.Writer, data []byte) error {
htmlFormatter := htmlcolor.NewFormatter()
buf := bytes.NewBuffer(make([]byte, 0, len(data)))
htmlFormatter.Format(buf, data)
writer.Write(buf.Bytes())
return nil
}
func (f *htmlFormatter) Title() string {
return "[html]"
}