Follow upstream reflow API changes

This commit is contained in:
Christian Muehlhaeuser
2019-12-15 03:30:23 +01:00
parent 52c56467f6
commit b0857fb690
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import (
"bytes"
"io"
"github.com/muesli/reflow"
"github.com/muesli/reflow/wordwrap"
)
type BlockElement struct {
@@ -29,7 +29,7 @@ func (e *BlockElement) Finish(w io.Writer, ctx RenderContext) error {
if e.Margin {
mw := NewMarginWriter(ctx, w, bs.Current().Style)
_, err := mw.Write(
reflow.Bytes(bs.Current().Block.Bytes(), int(bs.Width(ctx))))
wordwrap.Bytes(bs.Current().Block.Bytes(), int(bs.Width(ctx))))
if err != nil {
return err
}