From 02da49597dce2e8206495eb3f778b22126ca6724 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Tue, 20 Jan 2015 15:50:32 -0700 Subject: [PATCH] Fix string comparison for .Truncated page variable Instead of `strings.TrimSpace()`, use `strings.Join(strings.Fields(s), " ")` to collapse all whitespaces into single spaces, in order to match the behaviour of helpers.TruncateWordsToWholeSentence(), in order to detect non-truncated content correctly. --- hugolib/page.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugolib/page.go b/hugolib/page.go index 1383f387e..479aa1398 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -169,7 +169,7 @@ func (p *Page) setSummary() { } else { // If hugo defines split: // render, strip html, then split - plain := strings.TrimSpace(p.Plain()) + plain := strings.Join(strings.Fields(p.Plain()), " ") p.Summary = helpers.BytesToHTML([]byte(helpers.TruncateWordsToWholeSentence(plain, helpers.SummaryLength))) p.Truncated = len(p.Summary) != len(plain) }