diff --git a/hugolib/page.go b/hugolib/page.go index 3fb23dd11..90bc8a183 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -244,17 +244,20 @@ type PageMeta struct { } func (*PageMeta) WordCount() int { + // Remove in Hugo 0.19 helpers.Deprecated("PageMeta", "WordCount", ".WordCount (on Page)", true) return 0 } func (*PageMeta) FuzzyWordCount() int { + // Remove in Hugo 0.19 helpers.Deprecated("PageMeta", "FuzzyWordCount", ".FuzzyWordCount (on Page)", true) return 0 } func (*PageMeta) ReadingTime() int { + // Remove in Hugo 0.19 helpers.Deprecated("PageMeta", "ReadingTime", ".ReadingTime (on Page)", true) return 0 } @@ -1585,7 +1588,8 @@ func (p *Page) Hugo() *HugoInfo { func (p *Page) RSSlink() template.HTML { // TODO(bep) we cannot have two of these - helpers.Deprecated(".Page", "RSSlink", "RSSLink", false) + // Remove in Hugo 0.20 + helpers.Deprecated(".Page", "RSSlink", "RSSLink", true) return p.RSSLink } diff --git a/hugolib/site.go b/hugolib/site.go index 61676a16b..dd6e96c2a 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -251,7 +251,7 @@ func (s *SiteInfo) Param(key interface{}) (interface{}, error) { // GetParam gets a site parameter value if found, nil if not. func (s *SiteInfo) GetParam(key string) interface{} { - helpers.Deprecated("SiteInfo", ".GetParam", ".Param", false) + helpers.Deprecated("SiteInfo", ".GetParam", ".Param", true) v := s.Params[strings.ToLower(key)] if v == nil {