Avoid converting summary to []byte and back to string
authorbep <bjorn.erik.pedersen@gmail.com>
Tue, 10 Feb 2015 13:37:29 +0000 (14:37 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 10 Feb 2015 13:37:29 +0000 (14:37 +0100)
hugolib/page.go

index 7b3e67a691d671f144fa48e4e44a7f63860f6779..7aec841a03330ce279465f26aa57264a184d6c79 100644 (file)
@@ -191,7 +191,7 @@ func (p *Page) setSummary() {
                // If hugo defines split:
                // render, strip html, then split
                summary, truncated := helpers.TruncateWordsToWholeSentence(p.PlainWords(), helpers.SummaryLength)
-               p.Summary = helpers.BytesToHTML([]byte(summary))
+               p.Summary = template.HTML(summary)
                p.Truncated = truncated
 
        }