mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-08-28 04:46:29 -04:00
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package gold
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/muesli/reflow"
|
|
)
|
|
|
|
type ParagraphElement struct {
|
|
}
|
|
|
|
func (e *ParagraphElement) Render(w io.Writer, ctx RenderContext) error {
|
|
bs := ctx.blockStack
|
|
rules := ctx.styles.Paragraph
|
|
|
|
_, _ = w.Write([]byte("\n"))
|
|
be := BlockElement{
|
|
Block: &bytes.Buffer{},
|
|
Style: cascadeStyle(bs.Current().Style, rules, true),
|
|
}
|
|
bs.Push(be)
|
|
|
|
renderText(w, bs.Parent().Style.StylePrimitive, rules.Prefix)
|
|
renderText(w, bs.Current().Style.StylePrimitive, rules.StyledPrefix)
|
|
return nil
|
|
}
|
|
|
|
func (e *ParagraphElement) Finish(w io.Writer, ctx RenderContext) error {
|
|
bs := ctx.blockStack
|
|
rules := bs.Current().Style
|
|
|
|
mw := NewMarginWriter(ctx, w, rules)
|
|
if len(strings.TrimSpace(bs.Current().Block.String())) > 0 {
|
|
flow := reflow.NewReflow(int(bs.Width(ctx)))
|
|
flow.KeepNewlines = false
|
|
_, _ = flow.Write(bs.Current().Block.Bytes())
|
|
flow.Close()
|
|
|
|
_, err := mw.Write(flow.Bytes())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, _ = mw.Write([]byte("\n"))
|
|
}
|
|
|
|
renderText(w, bs.Current().Style.StylePrimitive, rules.StyledSuffix)
|
|
renderText(w, bs.Parent().Style.StylePrimitive, rules.Suffix)
|
|
|
|
bs.Current().Block.Reset()
|
|
bs.Pop()
|
|
return nil
|
|
}
|