mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
resources/page: Mark some more interface methods as internal
For the new documenttion.
This commit is contained in:
parent
097fd588ca
commit
625be77e08
1 changed files with 7 additions and 0 deletions
|
@ -184,6 +184,7 @@ type PageMetaProvider interface {
|
||||||
Path() string
|
Path() string
|
||||||
|
|
||||||
// This is just a temporary bridge method. Use Path in templates.
|
// This is just a temporary bridge method. Use Path in templates.
|
||||||
|
// Pathc is for internal usage only.
|
||||||
Pathc() string
|
Pathc() string
|
||||||
|
|
||||||
// The slug, typically defined in front matter.
|
// The slug, typically defined in front matter.
|
||||||
|
@ -306,14 +307,20 @@ type RawContentProvider interface {
|
||||||
// RefProvider provides the methods needed to create reflinks to pages.
|
// RefProvider provides the methods needed to create reflinks to pages.
|
||||||
type RefProvider interface {
|
type RefProvider interface {
|
||||||
Ref(argsm map[string]any) (string, error)
|
Ref(argsm map[string]any) (string, error)
|
||||||
|
|
||||||
|
// RefFrom is for internal use only.
|
||||||
RefFrom(argsm map[string]any, source any) (string, error)
|
RefFrom(argsm map[string]any, source any) (string, error)
|
||||||
|
|
||||||
RelRef(argsm map[string]any) (string, error)
|
RelRef(argsm map[string]any) (string, error)
|
||||||
|
|
||||||
|
// RefFrom is for internal use only.
|
||||||
RelRefFrom(argsm map[string]any, source any) (string, error)
|
RelRefFrom(argsm map[string]any, source any) (string, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// RelatedKeywordsProvider allows a Page to be indexed.
|
// RelatedKeywordsProvider allows a Page to be indexed.
|
||||||
type RelatedKeywordsProvider interface {
|
type RelatedKeywordsProvider interface {
|
||||||
// Make it indexable as a related.Document
|
// Make it indexable as a related.Document
|
||||||
|
// RelatedKeywords is meant for internal usage only.
|
||||||
RelatedKeywords(cfg related.IndexConfig) ([]related.Keyword, error)
|
RelatedKeywords(cfg related.IndexConfig) ([]related.Keyword, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue