diff options
Diffstat (limited to 'markup/goldmark/blockquotes/blockquotes.go')
-rw-r--r-- | markup/goldmark/blockquotes/blockquotes.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/markup/goldmark/blockquotes/blockquotes.go b/markup/goldmark/blockquotes/blockquotes.go index a261ec4fe..f68cccd06 100644 --- a/markup/goldmark/blockquotes/blockquotes.go +++ b/markup/goldmark/blockquotes/blockquotes.go @@ -95,7 +95,7 @@ func (r *htmlRenderer) renderBlockquote(w util.BufWriter, src []byte, node ast.N BaseContext: render.NewBaseContext(ctx, renderer, n, src, nil, ordinal), typ: typ, alertType: alertType, - text: hstring.RenderedString(text), + text: hstring.RenderedHTML(text), AttributesHolder: attributes.New(n.Attributes(), attributes.AttributesOwnerGeneral), } @@ -134,7 +134,7 @@ func (r *htmlRenderer) renderBlockquoteDefault( type blockquoteContext struct { hooks.BaseContext - text hstring.RenderedString + text hstring.RenderedHTML alertType string typ string @@ -149,7 +149,7 @@ func (c *blockquoteContext) AlertType() string { return c.alertType } -func (c *blockquoteContext) Text() hstring.RenderedString { +func (c *blockquoteContext) Text() hstring.RenderedHTML { return c.text } |