// SummaryDivider denotes where content summarization should end. The default is "<!--more-->".
var SummaryDivider = []byte("<!--more-->")
-var summaryDividerAndNewLines = []byte("<!--more-->\n\n")
-
// Blackfriday holds configuration values for Blackfriday rendering.
type Blackfriday struct {
Smartypants bool
}
var (
- internalSummaryDivider = []byte("HUGOMORE42")
- internalSummaryDividerAndNewLines = []byte("HUGOMORE42\n\n")
+ internalSummaryDivider = []byte("HUGOMORE42")
)
// Returns the page as summary and main if a user defined split is provided.