I’m trying to set the slug to a string of length 6 using the following.
- Get a hmac string.
- From the string, get the prefix of length 6.
---
slug: {{ substr {{ hmac "sha256" "<random-string>" .Path }} 0 6 }}
---
Apparently this syntax is wrong. How can this be fixed?