internalSummaryDivider = []byte("HUGOMORE42")
)
+// We have to replace the <!--more--> with something that survives all the
+// rendering engines.
+// TODO(bep) inline replace
+func (p *Page) replaceDivider(content []byte) []byte {
+ sections := bytes.Split(content, helpers.SummaryDivider)
+
+ // If the raw content has nothing but whitespace after the summary
+ // marker then the page shouldn't be marked as truncated. This check
+ // is simplest against the raw content because different markup engines
+ // (rst and asciidoc in particular) add div and p elements after the
+ // summary marker.
+ p.Truncated = (len(sections) == 2 &&
+ len(bytes.Trim(sections[1], " \n\r")) > 0)
+
+ return bytes.Join(sections, internalSummaryDivider)
+}
+
// Returns the page as summary and main if a user defined split is provided.
func (p *Page) setUserDefinedSummaryIfProvided(rawContentCopy []byte) (*summaryContent, error) {
return nil, nil
}
- p.Truncated = true
- if len(sc.content) < 20 {
- // only whitespace?
- p.Truncated = len(bytes.Trim(sc.content, " \n\r")) > 0
- }
-
p.Summary = helpers.BytesToHTML(sc.summary)
return sc, nil
// Make this explicit so there is no doubt about what is what.
type summaryContent struct {
- summary []byte
- content []byte
- contentWithoutSummary []byte
+ summary []byte
+ content []byte
}
func splitUserDefinedSummaryAndContent(markup string, c []byte) (sc *summaryContent, err error) {
startMarkup []byte
endMarkup []byte
addDiv bool
- divStart = []byte("<div class=\"document\">")
)
switch markup {
withoutDivider := bytes.TrimSpace(append(c[:startDivider], c[endDivider:]...))
var (
- contentWithoutSummary []byte
- summary []byte
+ summary []byte
)
if len(withoutDivider) > 0 {
- contentWithoutSummary = bytes.TrimSpace(withoutDivider[endSummary:])
summary = bytes.TrimSpace(withoutDivider[:endSummary])
}
if addDiv {
// For the rst
summary = append(append([]byte(nil), summary...), []byte("</div>")...)
- // TODO(bep) include the document class, maybe
- contentWithoutSummary = append(divStart, contentWithoutSummary...)
}
if err != nil {
}
sc = &summaryContent{
- summary: summary,
- content: withoutDivider,
- contentWithoutSummary: contentWithoutSummary,
+ summary: summary,
+ content: withoutDivider,
}
return
Summary Same Line<!--more-->
Some more text
+`
+
+ simplePageWithSummaryDelimiterOnlySummary = `---
+title: Simple
+---
+Summary text
+
+<!--more-->
`
simplePageWithAllCJKRunes = `---
func TestSplitSummaryAndContent(t *testing.T) {
t.Parallel()
for i, this := range []struct {
- markup string
- content string
- expectedSummary string
- expectedContent string
- expectedContentWithoutSummary string
+ markup string
+ content string
+ expectedSummary string
+ expectedContent string
}{
{"markdown", `<p>Summary Same LineHUGOMORE42</p>
-<p>Some more text</p>`, "<p>Summary Same Line</p>", "<p>Summary Same Line</p>\n\n<p>Some more text</p>", "<p>Some more text</p>"},
+<p>Some more text</p>`, "<p>Summary Same Line</p>", "<p>Summary Same Line</p>\n\n<p>Some more text</p>"},
{"asciidoc", `<div class="paragraph"><p>sn</p></div><div class="paragraph"><p>HUGOMORE42Some more text</p></div>`,
"<div class=\"paragraph\"><p>sn</p></div>",
- "<div class=\"paragraph\"><p>sn</p></div><div class=\"paragraph\"><p>Some more text</p></div>",
- "<div class=\"paragraph\"><p>Some more text</p></div>"},
+ "<div class=\"paragraph\"><p>sn</p></div><div class=\"paragraph\"><p>Some more text</p></div>"},
{"rst",
"<div class=\"document\"><p>Summary Next Line</p><p>HUGOMORE42Some more text</p></div>",
"<div class=\"document\"><p>Summary Next Line</p></div>",
- "<div class=\"document\"><p>Summary Next Line</p><p>Some more text</p></div>",
- "<div class=\"document\"><p>Some more text</p></div>"},
- {"markdown", "<p>a</p><p>b</p><p>HUGOMORE42c</p>", "<p>a</p><p>b</p>", "<p>a</p><p>b</p><p>c</p>", "<p>c</p>"},
- {"markdown", "<p>a</p><p>b</p><p>cHUGOMORE42</p>", "<p>a</p><p>b</p><p>c</p>", "<p>a</p><p>b</p><p>c</p>", ""},
- {"markdown", "<p>a</p><p>bHUGOMORE42</p><p>c</p>", "<p>a</p><p>b</p>", "<p>a</p><p>b</p><p>c</p>", "<p>c</p>"},
- {"markdown", "<p>aHUGOMORE42</p><p>b</p><p>c</p>", "<p>a</p>", "<p>a</p><p>b</p><p>c</p>", "<p>b</p><p>c</p>"},
- {"markdown", " HUGOMORE42 ", "", "", ""},
- {"markdown", "HUGOMORE42", "", "", ""},
- {"markdown", "<p>HUGOMORE42", "<p>", "<p>", ""},
- {"markdown", "HUGOMORE42<p>", "", "<p>", "<p>"},
- {"markdown", "\n\n<p>HUGOMORE42</p>\n", "<p></p>", "<p></p>", ""},
+ "<div class=\"document\"><p>Summary Next Line</p><p>Some more text</p></div>"},
+ {"markdown", "<p>a</p><p>b</p><p>HUGOMORE42c</p>", "<p>a</p><p>b</p>", "<p>a</p><p>b</p><p>c</p>"},
+ {"markdown", "<p>a</p><p>b</p><p>cHUGOMORE42</p>", "<p>a</p><p>b</p><p>c</p>", "<p>a</p><p>b</p><p>c</p>"},
+ {"markdown", "<p>a</p><p>bHUGOMORE42</p><p>c</p>", "<p>a</p><p>b</p>", "<p>a</p><p>b</p><p>c</p>"},
+ {"markdown", "<p>aHUGOMORE42</p><p>b</p><p>c</p>", "<p>a</p>", "<p>a</p><p>b</p><p>c</p>"},
+ {"markdown", " HUGOMORE42 ", "", ""},
+ {"markdown", "HUGOMORE42", "", ""},
+ {"markdown", "<p>HUGOMORE42", "<p>", "<p>"},
+ {"markdown", "HUGOMORE42<p>", "", "<p>"},
+ {"markdown", "\n\n<p>HUGOMORE42</p>\n", "<p></p>", "<p></p>"},
// Issue #2586
// Note: Hugo will not split mid-sentence but will look for the closest
// paragraph end marker. This may be a change from Hugo 0.16, but it makes sense.
{"markdown", `<p>this is an example HUGOMORE42of the issue.</p>`,
"<p>this is an example of the issue.</p>",
- "<p>this is an example of the issue.</p>", ""},
+ "<p>this is an example of the issue.</p>"},
// Issue: #2538
{"markdown", fmt.Sprintf(` <p class="lead">%s</p>HUGOMORE42<p>%s</p>
`,
strings.Repeat("A", 10), strings.Repeat("B", 31)),
fmt.Sprintf(`<p class="lead">%s</p>`, strings.Repeat("A", 10)),
fmt.Sprintf(`<p class="lead">%s</p><p>%s</p>`, strings.Repeat("A", 10), strings.Repeat("B", 31)),
- fmt.Sprintf(`<p>%s</p>`, strings.Repeat("B", 31)),
},
} {
require.NotNil(t, sc, fmt.Sprintf("[%d] Nil %s", i, this.markup))
require.Equal(t, this.expectedSummary, string(sc.summary), fmt.Sprintf("[%d] Summary markup %s", i, this.markup))
require.Equal(t, this.expectedContent, string(sc.content), fmt.Sprintf("[%d] Content markup %s", i, this.markup))
- require.Equal(t, this.expectedContentWithoutSummary, string(sc.contentWithoutSummary), fmt.Sprintf("[%d] Content without summary, markup %s", i, this.markup))
}
}
testAllMarkdownEnginesForPages(t, assertFunc, nil, simplePageWithSummaryDelimiterSameLine)
}
+func TestPageWithMoreTagOnlySummary(t *testing.T) {
+
+ assertFunc := func(t *testing.T, ext string, pages Pages) {
+ p := pages[0]
+ checkTruncation(t, p, false, "page with summary delimiter at end")
+ }
+
+ testAllMarkdownEnginesForPages(t, assertFunc, nil, simplePageWithSummaryDelimiterOnlySummary)
+}
+
func TestPageWithDate(t *testing.T) {
t.Parallel()
cfg, fs := newTestCfg()