mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-09-06 08:57:14 -04:00
Keep termenv profile in RenderContext
This commit is contained in:
+3
-1
@@ -7,6 +7,7 @@ import (
|
||||
|
||||
// StyleWriter is a Writer that applies styling on whatever you write to it.
|
||||
type StyleWriter struct {
|
||||
ctx RenderContext
|
||||
w io.Writer
|
||||
buf bytes.Buffer
|
||||
rules StylePrimitive
|
||||
@@ -15,6 +16,7 @@ type StyleWriter struct {
|
||||
// NewStyleWriter returns a new StyleWriter.
|
||||
func NewStyleWriter(ctx RenderContext, w io.Writer, rules StylePrimitive) *StyleWriter {
|
||||
return &StyleWriter{
|
||||
ctx: ctx,
|
||||
w: w,
|
||||
rules: rules,
|
||||
}
|
||||
@@ -26,6 +28,6 @@ func (w *StyleWriter) Write(b []byte) (int, error) {
|
||||
|
||||
// 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())
|
||||
renderText(w.w, w.ctx.colorProfile, w.rules, w.buf.String())
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user