package hugolib
import (
+ "github.com/spf13/hugo/helpers"
"html/template"
"sync"
"time"
- "github.com/spf13/hugo/helpers"
)
type Node struct {
return n.URL
}
+// UrlPath is deprecated. Will be removed in 0.15.
+func (n *Node) UrlPath() URLPath {
+ helpers.Deprecated("Node", ".UrlPath", ".URLPath")
+ return n.URLPath
+}
+
+// Url is deprecated. Will be removed in 0.15.
+func (up URLPath) Url() string {
+ helpers.Deprecated("URLPath", ".Url", ".URL")
+ return up.URL
+}
+
// Scratch returns the writable context associated with this Node.
func (n *Node) Scratch() *Scratch {
if n.scratch == nil {