From: Bjørn Erik Pedersen Date: Sun, 23 Sep 2018 21:40:35 +0000 (+0200) Subject: resource/integrity: Make Data.Integrity be of type template.HTMLAttr X-Git-Tag: v0.49~9 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fe6a6f2737769070fd64a5192ff685c9c89020bd;p=brevno-suite%2Fhugo resource/integrity: Make Data.Integrity be of type template.HTMLAttr --- diff --git a/resource/integrity/integrity.go b/resource/integrity/integrity.go index bd85a503..bbb21417 100644 --- a/resource/integrity/integrity.go +++ b/resource/integrity/integrity.go @@ -21,6 +21,7 @@ import ( "encoding/hex" "fmt" "hash" + "html/template" "io" "github.com/gohugoio/hugo/resource" @@ -93,10 +94,9 @@ func (c *Client) Fingerprint(res resource.Resource, algo string) (resource.Resou ) } -func integrity(algo string, sum []byte) string { +func integrity(algo string, sum []byte) template.HTMLAttr { encoded := base64.StdEncoding.EncodeToString(sum) - return fmt.Sprintf("%s-%s", algo, encoded) - + return template.HTMLAttr(fmt.Sprintf("%s-%s", algo, encoded)) } func digest(h hash.Hash) ([]byte, error) {