2019-10-21 04:22:28 -04:00
---
title: .Scratch
2021-06-08 12:46:58 -04:00
description: Acts as a "scratchpad" to store and manipulate data.
2019-10-21 04:22:28 -04:00
categories: [functions]
2023-10-20 03:42:39 -04:00
keywords: []
2019-10-21 04:22:28 -04:00
menu:
docs:
2023-05-22 10:43:12 -04:00
parent: functions
2023-10-20 03:42:39 -04:00
function:
aliases: []
returnType:
signatures: []
relatedFunctions:
- .Store
- .Scratch
2019-10-21 04:22:28 -04:00
aliases: [/extras/scratch/,/doc/scratch/]
---
2021-06-08 12:46:58 -04:00
Scratch is a Hugo feature designed to conveniently manipulate data in a Go Template world. It is either a Page or Shortcode method for which the resulting data will be attached to the given context, or it can live as a unique instance stored in a variable.
2019-10-21 04:22:28 -04:00
{{% note %}}
2021-06-08 12:46:58 -04:00
Note that Scratch was initially created as a workaround for a [Go template scoping limitation ](https://github.com/golang/go/issues/10608 ) that affected Hugo versions prior to 0.48. For a detailed analysis of `.Scratch` and contextual use cases, see [this blog post ](https://regisphilibert.com/blog/2017/04/hugo-scratch-explained-variable/ ).
2019-10-21 04:22:28 -04:00
{{% /note %}}
2021-06-08 12:46:58 -04:00
### Contexted `.Scratch` vs. local `newScratch`
Since Hugo 0.43, there are two different ways of using Scratch:
#### The Page's `.Scratch`
`.Scratch` is available as a Page method or a Shortcode method and attaches the "scratched" data to the given page. Either a Page or a Shortcode context is required to use `.Scratch` .
2019-10-21 04:22:28 -04:00
2021-06-08 12:46:58 -04:00
```go-html-template
{{ .Scratch.Set "greeting" "bonjour" }}
{{ range .Pages }}
{{ .Scratch.Set "greeting" (print "bonjour" .Title) }}
{{ end }}
```
2019-10-21 04:22:28 -04:00
2021-06-08 12:46:58 -04:00
#### The local `newScratch`
2022-11-17 10:14:29 -05:00
A Scratch instance can also be assigned to any variable using the `newScratch` function. In this case, no Page or Shortcode context is required and the scope of the scratch is only local. The methods detailed below are available from the variable the Scratch instance was assigned to.
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $data := newScratch }}
{{ $data.Set "greeting" "hola" }}
2019-10-21 04:22:28 -04:00
```
2021-06-08 12:46:58 -04:00
### Methods
A Scratch has the following methods:
{{% note %}}
Note that the following examples assume a [local Scratch instance ](#the-local-newscratch ) has been stored in `$scratch` .
{{% /note %}}
2019-10-21 04:22:28 -04:00
#### .Set
2021-06-08 12:46:58 -04:00
Set the value of a given key.
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.Set "greeting" "Hello" }}
2019-10-21 04:22:28 -04:00
```
2021-06-08 12:46:58 -04:00
2019-10-21 04:22:28 -04:00
#### .Get
2021-06-08 12:46:58 -04:00
Get the value of a given key.
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.Set "greeting" "Hello" }}
2019-10-21 04:22:28 -04:00
----
2021-06-08 12:46:58 -04:00
{{ $scratch.Get "greeting" }} > Hello
2019-10-21 04:22:28 -04:00
```
#### .Add
2021-06-08 12:46:58 -04:00
2022-11-17 10:14:29 -05:00
Add a given value to existing value(s) of the given key.
2019-10-21 04:22:28 -04:00
2023-10-20 03:42:39 -04:00
For single values, `Add` accepts values that support Go's `+` operator. If the first `Add` for a key is an array or slice, the following adds will be [appended ](/functions/collections/append/ ) to that list.
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.Add "greetings" "Hello" }}
{{ $scratch.Add "greetings" "Welcome" }}
2019-10-21 04:22:28 -04:00
----
2021-06-08 12:46:58 -04:00
{{ $scratch.Get "greetings" }} > HelloWelcome
2019-10-21 04:22:28 -04:00
```
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.Add "total" 3 }}
{{ $scratch.Add "total" 7 }}
2019-10-21 04:22:28 -04:00
----
2021-06-08 12:46:58 -04:00
{{ $scratch.Get "total" }} > 10
2019-10-21 04:22:28 -04:00
```
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.Add "greetings" (slice "Hello") }}
{{ $scratch.Add "greetings" (slice "Welcome" "Cheers") }}
2019-10-21 04:22:28 -04:00
----
2021-06-08 12:46:58 -04:00
{{ $scratch.Get "greetings" }} > []interface {}{"Hello", "Welcome", "Cheers"}
2019-10-21 04:22:28 -04:00
```
#### .SetInMap
2021-06-08 12:46:58 -04:00
Takes a `key` , `mapKey` and `value` and adds a map of `mapKey` and `value` to the given `key` .
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.SetInMap "greetings" "english" "Hello" }}
{{ $scratch.SetInMap "greetings" "french" "Bonjour" }}
2019-10-21 04:22:28 -04:00
----
2021-06-08 12:46:58 -04:00
{{ $scratch.Get "greetings" }} > map[french:Bonjour english:Hello]
2019-10-21 04:22:28 -04:00
```
2021-06-18 11:49:54 -04:00
#### .DeleteInMap
Takes a `key` and `mapKey` and removes the map of `mapKey` from the given `key` .
```go-html-template
{{ .Scratch.SetInMap "greetings" "english" "Hello" }}
{{ .Scratch.SetInMap "greetings" "french" "Bonjour" }}
----
{{ .Scratch.DeleteInMap "greetings" "english" }}
----
{{ .Scratch.Get "greetings" }} > map[french:Bonjour]
```
2019-10-21 04:22:28 -04:00
#### .GetSortedMapValues
2021-06-08 12:46:58 -04:00
Return an array of values from `key` sorted by `mapKey` .
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.SetInMap "greetings" "english" "Hello" }}
{{ $scratch.SetInMap "greetings" "french" "Bonjour" }}
2019-10-21 04:22:28 -04:00
----
2021-06-08 12:46:58 -04:00
{{ $scratch.GetSortedMapValues "greetings" }} > [Hello Bonjour]
2019-10-21 04:22:28 -04:00
```
2021-06-08 12:46:58 -04:00
2019-10-21 04:22:28 -04:00
#### .Delete
2021-06-08 12:46:58 -04:00
2022-11-17 10:14:29 -05:00
Remove the given key.
2019-10-21 04:22:28 -04:00
```go-html-template
2021-06-08 12:46:58 -04:00
{{ $scratch.Set "greeting" "Hello" }}
----
{{ $scratch.Delete "greeting" }}
2019-10-21 04:22:28 -04:00
```
2020-06-16 08:18:51 -04:00
#### .Values
2021-06-08 12:46:58 -04:00
Return the raw backing map. Note that you should only use this method on the locally scoped Scratch instances you obtain via [`newScratch` ](#the-local-newscratch ), not `.Page.Scratch` etc., as that will lead to concurrency issues.
2019-10-21 04:22:28 -04:00
[pagevars]: /variables/page/