2019-01-02 06:33:26 -05:00
|
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
// Package page contains the core interfaces and types for the Page resource,
|
|
|
|
|
// a core component in Hugo.
|
|
|
|
|
package page
|
|
|
|
|
|
|
|
|
|
import (
|
2023-02-11 10:20:24 -05:00
|
|
|
|
"context"
|
2019-01-02 06:33:26 -05:00
|
|
|
|
"html/template"
|
|
|
|
|
|
2020-09-07 09:07:10 -04:00
|
|
|
|
"github.com/gohugoio/hugo/identity"
|
2022-10-26 04:09:38 -04:00
|
|
|
|
"github.com/gohugoio/hugo/markup/converter"
|
2023-02-11 10:20:24 -05:00
|
|
|
|
"github.com/gohugoio/hugo/markup/tableofcontents"
|
2020-09-07 09:07:10 -04:00
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
"github.com/gohugoio/hugo/config"
|
2020-09-07 09:07:10 -04:00
|
|
|
|
"github.com/gohugoio/hugo/tpl"
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
|
|
|
|
"github.com/gohugoio/hugo/compare"
|
2019-09-10 05:26:34 -04:00
|
|
|
|
"github.com/gohugoio/hugo/hugofs/files"
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/navigation"
|
|
|
|
|
"github.com/gohugoio/hugo/related"
|
|
|
|
|
"github.com/gohugoio/hugo/resources/resource"
|
|
|
|
|
"github.com/gohugoio/hugo/source"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Clear clears any global package state.
|
|
|
|
|
func Clear() error {
|
|
|
|
|
spc.clear()
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// AlternativeOutputFormatsProvider provides alternative output formats for a
|
|
|
|
|
// Page.
|
|
|
|
|
type AlternativeOutputFormatsProvider interface {
|
|
|
|
|
// AlternativeOutputFormats gives the alternative output formats for the
|
|
|
|
|
// current output.
|
|
|
|
|
// Note that we use the term "alternative" and not "alternate" here, as it
|
|
|
|
|
// does not necessarily replace the other format, it is an alternative representation.
|
|
|
|
|
AlternativeOutputFormats() OutputFormats
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// AuthorProvider provides author information.
|
|
|
|
|
type AuthorProvider interface {
|
2022-04-20 11:08:01 -04:00
|
|
|
|
// Deprecated.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Author() Author
|
2022-04-20 11:08:01 -04:00
|
|
|
|
// Deprecated.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Authors() AuthorList
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ChildCareProvider provides accessors to child resources.
|
|
|
|
|
type ChildCareProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Pages returns a list of pages of all kinds.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Pages() Pages
|
2019-08-03 11:27:40 -04:00
|
|
|
|
|
|
|
|
|
// RegularPages returns a list of pages of kind 'Page'.
|
|
|
|
|
RegularPages() Pages
|
|
|
|
|
|
2020-03-16 06:37:57 -04:00
|
|
|
|
// RegularPagesRecursive returns all regular pages below the current
|
|
|
|
|
// section.
|
|
|
|
|
RegularPagesRecursive() Pages
|
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Resources returns a list of all resources.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Resources() resource.Resources
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ContentProvider provides the content related values for a Page.
|
|
|
|
|
type ContentProvider interface {
|
2023-02-11 10:20:24 -05:00
|
|
|
|
Content(context.Context) (any, error)
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// Plain returns the Page Content stripped of HTML markup.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
Plain(context.Context) string
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// PlainWords returns a string slice from splitting Plain using https://pkg.go.dev/strings#Fields.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
PlainWords(context.Context) []string
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// Summary returns a generated summary of the content.
|
|
|
|
|
// The breakpoint can be set manually by inserting a summary separator in the source file.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
Summary(context.Context) template.HTML
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// Truncated returns whether the Summary is truncated or not.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
Truncated(context.Context) bool
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// FuzzyWordCount returns the approximate number of words in the content.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
FuzzyWordCount(context.Context) int
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// WordCount returns the number of words in the content.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
WordCount(context.Context) int
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// ReadingTime returns the reading time based on the length of plain text.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
ReadingTime(context.Context) int
|
2022-04-21 04:59:13 -04:00
|
|
|
|
|
|
|
|
|
// Len returns the length of the content.
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// This is for internal use only.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
Len(context.Context) int
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-26 04:09:38 -04:00
|
|
|
|
// ContentRenderer provides the content rendering methods for some content.
|
|
|
|
|
type ContentRenderer interface {
|
2023-02-24 01:23:10 -05:00
|
|
|
|
// ParseAndRenderContent renders the given content.
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// For internal use only.
|
2023-02-24 01:23:10 -05:00
|
|
|
|
ParseAndRenderContent(ctx context.Context, content []byte, enableTOC bool) (converter.ResultRender, error)
|
|
|
|
|
// For internal use only.
|
|
|
|
|
ParseContent(ctx context.Context, content []byte) (converter.ResultParse, bool, error)
|
|
|
|
|
// For internal use only.
|
|
|
|
|
RenderContent(ctx context.Context, content []byte, doc any) (converter.ResultRender, bool, error)
|
2022-10-26 04:09:38 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// FileProvider provides the source file.
|
|
|
|
|
type FileProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// File returns the source file for this Page,
|
|
|
|
|
// or a zero File if this Page is not backed by a file.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
File() source.File
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetPageProvider provides the GetPage method.
|
|
|
|
|
type GetPageProvider interface {
|
|
|
|
|
// GetPage looks up a page for the given ref.
|
|
|
|
|
// {{ with .GetPage "blog" }}{{ .Title }}{{ end }}
|
|
|
|
|
//
|
|
|
|
|
// This will return nil when no page could be found, and will return
|
|
|
|
|
// an error if the ref is ambiguous.
|
|
|
|
|
GetPage(ref string) (Page, error)
|
2020-09-07 09:07:10 -04:00
|
|
|
|
|
|
|
|
|
// GetPageWithTemplateInfo is for internal use only.
|
|
|
|
|
GetPageWithTemplateInfo(info tpl.Info, ref string) (Page, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GitInfoProvider provides Git info.
|
|
|
|
|
type GitInfoProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// GitInfo returns the Git info for this object.
|
|
|
|
|
GitInfo() source.GitInfo
|
|
|
|
|
// CodeOwners returns the code owners for this object.
|
2022-02-27 13:40:07 -05:00
|
|
|
|
CodeOwners() []string
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// InSectionPositioner provides section navigation.
|
|
|
|
|
type InSectionPositioner interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// NextInSection returns the next page in the same section.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
NextInSection() Page
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// PrevInSection returns the previous page in the same section.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
PrevInSection() Page
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// InternalDependencies is considered an internal interface.
|
|
|
|
|
type InternalDependencies interface {
|
2022-04-20 11:08:01 -04:00
|
|
|
|
// GetRelatedDocsHandler is for internal use only.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
GetRelatedDocsHandler() *RelatedDocsHandler
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OutputFormatsProvider provides the OutputFormats of a Page.
|
|
|
|
|
type OutputFormatsProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// OutputFormats returns the OutputFormats for this Page.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
OutputFormats() OutputFormats
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
|
// Page is the core interface in Hugo and what you get as the top level data context in your templates.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
type Page interface {
|
|
|
|
|
ContentProvider
|
|
|
|
|
TableOfContentsProvider
|
|
|
|
|
PageWithoutContent
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-11 10:20:24 -05:00
|
|
|
|
type PageFragment interface {
|
|
|
|
|
resource.ResourceLinksProvider
|
|
|
|
|
resource.ResourceMetaProvider
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// PageMetaProvider provides page metadata, typically provided via front matter.
|
|
|
|
|
type PageMetaProvider interface {
|
|
|
|
|
// The 4 page dates
|
|
|
|
|
resource.Dated
|
|
|
|
|
|
|
|
|
|
// Aliases forms the base for redirects generation.
|
|
|
|
|
Aliases() []string
|
|
|
|
|
|
2022-04-21 04:59:13 -04:00
|
|
|
|
// BundleType returns the bundle type: `leaf`, `branch` or an empty string.
|
2019-09-10 05:26:34 -04:00
|
|
|
|
BundleType() files.ContentClass
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// A configured description.
|
|
|
|
|
Description() string
|
|
|
|
|
|
|
|
|
|
// Whether this is a draft. Will only be true if run with the --buildDrafts (-D) flag.
|
|
|
|
|
Draft() bool
|
|
|
|
|
|
|
|
|
|
// IsHome returns whether this is the home page.
|
|
|
|
|
IsHome() bool
|
|
|
|
|
|
|
|
|
|
// Configured keywords.
|
|
|
|
|
Keywords() []string
|
|
|
|
|
|
2020-06-16 09:43:50 -04:00
|
|
|
|
// The Page Kind. One of page, home, section, taxonomy, term.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Kind() string
|
|
|
|
|
|
|
|
|
|
// The configured layout to use to render this page. Typically set in front matter.
|
|
|
|
|
Layout() string
|
|
|
|
|
|
|
|
|
|
// The title used for links.
|
|
|
|
|
LinkTitle() string
|
|
|
|
|
|
|
|
|
|
// IsNode returns whether this is an item of one of the list types in Hugo,
|
|
|
|
|
// i.e. not a regular content
|
|
|
|
|
IsNode() bool
|
|
|
|
|
|
|
|
|
|
// IsPage returns whether this is a regular content
|
|
|
|
|
IsPage() bool
|
|
|
|
|
|
|
|
|
|
// Param looks for a param in Page and then in Site config.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
Param(key any) (any, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// Path gets the relative path, including file name and extension if relevant,
|
|
|
|
|
// to the source of this Page. It will be relative to any content root.
|
|
|
|
|
Path() string
|
|
|
|
|
|
2022-01-04 07:07:10 -05:00
|
|
|
|
// This is just a temporary bridge method. Use Path in templates.
|
2022-04-20 11:11:27 -04:00
|
|
|
|
// Pathc is for internal usage only.
|
2022-01-04 07:07:10 -05:00
|
|
|
|
Pathc() string
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// The slug, typically defined in front matter.
|
|
|
|
|
Slug() string
|
|
|
|
|
|
|
|
|
|
// This page's language code. Will be the same as the site's.
|
|
|
|
|
Lang() string
|
|
|
|
|
|
|
|
|
|
// IsSection returns whether this is a section
|
|
|
|
|
IsSection() bool
|
|
|
|
|
|
|
|
|
|
// Section returns the first path element below the content root.
|
|
|
|
|
Section() string
|
|
|
|
|
|
|
|
|
|
// Returns a slice of sections (directories if it's a file) to this
|
|
|
|
|
// Page.
|
|
|
|
|
SectionsEntries() []string
|
|
|
|
|
|
|
|
|
|
// SectionsPath is SectionsEntries joined with a /.
|
|
|
|
|
SectionsPath() string
|
|
|
|
|
|
|
|
|
|
// Sitemap returns the sitemap configuration for this page.
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// This is for internal use only.
|
2023-01-04 12:24:36 -05:00
|
|
|
|
Sitemap() config.SitemapConfig
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// Type is a discriminator used to select layouts etc. It is typically set
|
|
|
|
|
// in front matter, but will fall back to the root section.
|
|
|
|
|
Type() string
|
|
|
|
|
|
|
|
|
|
// The configured weight, used as the first sort value in the default
|
|
|
|
|
// page sort if non-zero.
|
|
|
|
|
Weight() int
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-27 07:42:36 -05:00
|
|
|
|
// PageRenderProvider provides a way for a Page to render content.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
type PageRenderProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Render renders the given layout with this Page as context.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
Render(ctx context.Context, layout ...string) (template.HTML, error)
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// RenderString renders the first value in args with tPaginatorhe content renderer defined
|
|
|
|
|
// for this Page.
|
|
|
|
|
// It takes an optional map as a second argument:
|
|
|
|
|
//
|
|
|
|
|
// display (“inline”):
|
|
|
|
|
// - inline or block. If inline (default), surrounding <p></p> on short snippets will be trimmed.
|
|
|
|
|
// markup (defaults to the Page’s markup)
|
2023-02-11 10:20:24 -05:00
|
|
|
|
RenderString(ctx context.Context, args ...any) (template.HTML, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// PageWithoutContent is the Page without any of the content methods.
|
|
|
|
|
type PageWithoutContent interface {
|
|
|
|
|
RawContentProvider
|
|
|
|
|
resource.Resource
|
|
|
|
|
PageMetaProvider
|
|
|
|
|
resource.LanguageProvider
|
|
|
|
|
|
|
|
|
|
// For pages backed by a file.
|
|
|
|
|
FileProvider
|
|
|
|
|
|
2019-04-05 10:52:37 -04:00
|
|
|
|
GitInfoProvider
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// Output formats
|
|
|
|
|
OutputFormatsProvider
|
|
|
|
|
AlternativeOutputFormatsProvider
|
|
|
|
|
|
|
|
|
|
// Tree navigation
|
|
|
|
|
ChildCareProvider
|
|
|
|
|
TreeProvider
|
|
|
|
|
|
2019-07-31 08:36:36 -04:00
|
|
|
|
// Horizontal navigation
|
2019-01-02 06:33:26 -05:00
|
|
|
|
InSectionPositioner
|
|
|
|
|
PageRenderProvider
|
|
|
|
|
PaginatorProvider
|
|
|
|
|
Positioner
|
|
|
|
|
navigation.PageMenusProvider
|
|
|
|
|
|
|
|
|
|
// TODO(bep)
|
|
|
|
|
AuthorProvider
|
|
|
|
|
|
|
|
|
|
// Page lookups/refs
|
|
|
|
|
GetPageProvider
|
|
|
|
|
RefProvider
|
|
|
|
|
|
|
|
|
|
resource.TranslationKeyProvider
|
|
|
|
|
TranslationsProvider
|
|
|
|
|
|
|
|
|
|
SitesProvider
|
|
|
|
|
|
|
|
|
|
// Helper methods
|
|
|
|
|
ShortcodeInfoProvider
|
|
|
|
|
compare.Eqer
|
2022-02-22 08:42:33 -05:00
|
|
|
|
|
|
|
|
|
// Scratch returns a Scratch that can be used to store temporary state.
|
|
|
|
|
// Note that this Scratch gets reset on server rebuilds. See Store() for a variant that survives.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
maps.Scratcher
|
2022-02-22 08:42:33 -05:00
|
|
|
|
|
|
|
|
|
// Store returns a Scratch that can be used to store temporary state.
|
|
|
|
|
// In contrast to Scratch(), this Scratch is not reset on server rebuilds.
|
|
|
|
|
Store() *maps.Scratch
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
RelatedKeywordsProvider
|
|
|
|
|
|
2020-02-19 03:16:27 -05:00
|
|
|
|
// GetTerms gets the terms of a given taxonomy,
|
|
|
|
|
// e.g. GetTerms("categories")
|
|
|
|
|
GetTerms(taxonomy string) Pages
|
|
|
|
|
|
2020-09-07 09:07:10 -04:00
|
|
|
|
// Used in change/dependency tracking.
|
|
|
|
|
identity.Provider
|
|
|
|
|
|
2023-05-18 05:05:56 -04:00
|
|
|
|
// HeadingsFiltered returns the headings for this page when a filter is set.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
// This is currently only triggered with the Related content feature
|
|
|
|
|
// and the "fragments" type of index.
|
|
|
|
|
HeadingsFiltered(context.Context) tableofcontents.Headings
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
DeprecatedWarningPageMethods
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Positioner provides next/prev navigation.
|
|
|
|
|
type Positioner interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Next points up to the next regular page (sorted by Hugo’s default sort).
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Next() Page
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Prev points down to the previous regular page (sorted by Hugo’s default sort).
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Prev() Page
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use Prev. Will be removed in Hugo 0.57
|
|
|
|
|
PrevPage() Page
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use Next. Will be removed in Hugo 0.57
|
|
|
|
|
NextPage() Page
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RawContentProvider provides the raw, unprocessed content of the page.
|
|
|
|
|
type RawContentProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// RawContent returns the raw, unprocessed content of the page excluding any front matter.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
RawContent() string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RefProvider provides the methods needed to create reflinks to pages.
|
|
|
|
|
type RefProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Ref returns an absolute URl to a page.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
Ref(argsm map[string]any) (string, error)
|
2022-04-20 11:11:27 -04:00
|
|
|
|
|
|
|
|
|
// RefFrom is for internal use only.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
RefFrom(argsm map[string]any, source any) (string, error)
|
2022-04-20 11:11:27 -04:00
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// RelRef returns a relative URL to a page.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
RelRef(argsm map[string]any) (string, error)
|
2022-04-20 11:11:27 -04:00
|
|
|
|
|
2023-05-18 05:05:56 -04:00
|
|
|
|
// RelRefFrom is for internal use only.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
RelRefFrom(argsm map[string]any, source any) (string, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RelatedKeywordsProvider allows a Page to be indexed.
|
|
|
|
|
type RelatedKeywordsProvider interface {
|
|
|
|
|
// Make it indexable as a related.Document
|
2022-04-20 11:11:27 -04:00
|
|
|
|
// RelatedKeywords is meant for internal usage only.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
RelatedKeywords(cfg related.IndexConfig) ([]related.Keyword, error)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ShortcodeInfoProvider provides info about the shortcodes in a Page.
|
|
|
|
|
type ShortcodeInfoProvider interface {
|
|
|
|
|
// HasShortcode return whether the page has a shortcode with the given name.
|
|
|
|
|
// This method is mainly motivated with the Hugo Docs site's need for a list
|
|
|
|
|
// of pages with the `todo` shortcode in it.
|
|
|
|
|
HasShortcode(name string) bool
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SitesProvider provide accessors to get sites.
|
|
|
|
|
type SitesProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Site returns the current site.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Site() Site
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// Sites returns all sites.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
Sites() Sites
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TableOfContentsProvider provides the table of contents for a Page.
|
|
|
|
|
type TableOfContentsProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// TableOfContents returns the table of contents for the page rendered as HTML.
|
2023-02-11 10:20:24 -05:00
|
|
|
|
TableOfContents(context.Context) template.HTML
|
2023-03-05 04:32:00 -05:00
|
|
|
|
|
|
|
|
|
// Fragments returns the fragments for this page.
|
|
|
|
|
Fragments(context.Context) *tableofcontents.Fragments
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TranslationsProvider provides access to any translations.
|
|
|
|
|
type TranslationsProvider interface {
|
|
|
|
|
|
|
|
|
|
// IsTranslated returns whether this content file is translated to
|
|
|
|
|
// other language(s).
|
|
|
|
|
IsTranslated() bool
|
|
|
|
|
|
|
|
|
|
// AllTranslations returns all translations, including the current Page.
|
|
|
|
|
AllTranslations() Pages
|
|
|
|
|
|
|
|
|
|
// Translations returns the translations excluding the current Page.
|
|
|
|
|
Translations() Pages
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TreeProvider provides section tree navigation.
|
|
|
|
|
type TreeProvider interface {
|
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// IsAncestor returns whether the current page is an ancestor of other.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// Note that this method is not relevant for taxonomy lists and taxonomy terms pages.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
IsAncestor(other any) (bool, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// CurrentSection returns the page's current section or the page itself if home or a section.
|
|
|
|
|
// Note that this will return nil for pages that is not regular, home or section pages.
|
|
|
|
|
CurrentSection() Page
|
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// IsDescendant returns whether the current page is a descendant of other.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// Note that this method is not relevant for taxonomy lists and taxonomy terms pages.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
IsDescendant(other any) (bool, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// FirstSection returns the section on level 1 below home, e.g. "/docs".
|
|
|
|
|
// For the home page, this will return itself.
|
|
|
|
|
FirstSection() Page
|
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
|
// InSection returns whether other is in the current section.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// Note that this will always return false for pages that are
|
|
|
|
|
// not either regular, home or section pages.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
InSection(other any) (bool, error)
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// Parent returns a section's parent section or a page's section.
|
|
|
|
|
// To get a section's subsections, see Page's Sections method.
|
|
|
|
|
Parent() Page
|
|
|
|
|
|
2022-11-29 23:02:57 -05:00
|
|
|
|
// Ancestors returns the ancestors of each page
|
|
|
|
|
Ancestors() Pages
|
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
// Sections returns this section's subsections, if any.
|
|
|
|
|
// Note that for non-sections, this method will always return an empty list.
|
|
|
|
|
Sections() Pages
|
2019-03-25 02:54:10 -04:00
|
|
|
|
|
|
|
|
|
// Page returns a reference to the Page itself, kept here mostly
|
|
|
|
|
// for legacy reasons.
|
|
|
|
|
Page() Page
|
2019-01-02 06:33:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeprecatedWarningPageMethods lists deprecated Page methods that will trigger
|
|
|
|
|
// a WARNING if invoked.
|
|
|
|
|
// This was added in Hugo 0.55.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
type DeprecatedWarningPageMethods any // This was emptied in Hugo 0.93.0.
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
|
|
// Move here to trigger ERROR instead of WARNING.
|
|
|
|
|
// TODO(bep) create wrappers and put into the Page once it has some methods.
|
2022-03-17 17:03:27 -04:00
|
|
|
|
type DeprecatedErrorPageMethods any
|
2023-03-04 08:43:23 -05:00
|
|
|
|
|
|
|
|
|
// PageWithContext is a Page with a context.Context.
|
|
|
|
|
type PageWithContext struct {
|
|
|
|
|
Page
|
|
|
|
|
Ctx context.Context
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) Content() (any, error) {
|
|
|
|
|
return p.Page.Content(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) Plain() string {
|
|
|
|
|
return p.Page.Plain(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) PlainWords() []string {
|
|
|
|
|
return p.Page.PlainWords(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) Summary() template.HTML {
|
|
|
|
|
return p.Page.Summary(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) Truncated() bool {
|
|
|
|
|
return p.Page.Truncated(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) FuzzyWordCount() int {
|
|
|
|
|
return p.Page.FuzzyWordCount(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) WordCount() int {
|
|
|
|
|
return p.Page.WordCount(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) ReadingTime() int {
|
|
|
|
|
return p.Page.ReadingTime(p.Ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p PageWithContext) Len() int {
|
|
|
|
|
return p.Page.Len(p.Ctx)
|
|
|
|
|
}
|