mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-08-28 04:46:29 -04:00
32 lines
640 B
Go
32 lines
640 B
Go
package ansi
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
)
|
|
|
|
// StyleWriter is a Writer that applies styling on whatever you write to it.
|
|
type StyleWriter struct {
|
|
w io.Writer
|
|
buf bytes.Buffer
|
|
rules StylePrimitive
|
|
}
|
|
|
|
// NewStyleWriter returns a new StyleWriter.
|
|
func NewStyleWriter(ctx RenderContext, w io.Writer, rules StylePrimitive) *StyleWriter {
|
|
return &StyleWriter{
|
|
w: w,
|
|
rules: rules,
|
|
}
|
|
}
|
|
|
|
func (w *StyleWriter) Write(b []byte) (int, error) {
|
|
return w.buf.Write(b)
|
|
}
|
|
|
|
// Close must be called when you're finished writing to a StyleWriter.
|
|
func (w *StyleWriter) Close() error {
|
|
renderText(w.w, w.rules, w.buf.String())
|
|
return nil
|
|
}
|