aboutsummaryrefslogtreecommitdiffhomepage
path: root/hugolib/page__common.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/page__common.go')
-rw-r--r--hugolib/page__common.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/hugolib/page__common.go b/hugolib/page__common.go
index d3b0bd112..55465e214 100644
--- a/hugolib/page__common.go
+++ b/hugolib/page__common.go
@@ -56,7 +56,6 @@ type pageCommon struct {
store *maps.Scratch
// All of these represents the common parts of a page.Page
- maps.Scratcher
navigation.PageMenusProvider
page.AuthorProvider
page.AlternativeOutputFormatsProvider
@@ -113,3 +112,8 @@ type pageCommon struct {
func (p *pageCommon) Store() *maps.Scratch {
return p.store
}
+
+// See issue 13016.
+func (p *pageCommon) Scratch() *maps.Scratch {
+ return p.Store()
+}