projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
371c148
)
Avoid converting summary to []byte and back to string
author
bep
<bjorn.erik.pedersen@gmail.com>
Tue, 10 Feb 2015 13:37:29 +0000
(14:37 +0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Tue, 10 Feb 2015 13:37:29 +0000
(14:37 +0100)
hugolib/page.go
patch
|
blob
|
history
diff --git
a/hugolib/page.go
b/hugolib/page.go
index 7b3e67a691d671f144fa48e4e44a7f63860f6779..7aec841a03330ce279465f26aa57264a184d6c79 100644
(file)
--- a/
hugolib/page.go
+++ b/
hugolib/page.go
@@
-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
}