ref: 6c6a6c87ec2b5ac7342e268ab47861429230f7f4
parent: 1d18eb0574a57c3e9f468659d076a666a3dd76f2
author: Bjørn Erik Pedersen <[email protected]>
date: Thu Nov 1 17:08:12 EDT 2018
hugolib: Deprecate .Site.Ref and .Site.RelRef Fixes #5386
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -583,6 +583,8 @@
// Ref will give an absolute URL to ref in the given Page.
func (s *SiteInfo) Ref(ref string, page *Page, options ...string) (string, error) {
+ // Remove in Hugo 0.53
+ helpers.Deprecated("Site", ".Ref", "Use .Site.GetPage", false)
outputFormat := ""
if len(options) > 0 {
outputFormat = options[0]
@@ -593,6 +595,8 @@
// RelRef will give an relative URL to ref in the given Page.
func (s *SiteInfo) RelRef(ref string, page *Page, options ...string) (string, error) {
+ // Remove in Hugo 0.53
+ helpers.Deprecated("Site", ".RelRef", "Use .Site.GetPage", false)
outputFormat := ""
if len(options) > 0 {
outputFormat = options[0]