resource/integrity: Make Data.Integrity be of type template.HTMLAttr
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 23 Sep 2018 21:40:35 +0000 (23:40 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 23 Sep 2018 21:40:35 +0000 (23:40 +0200)
resource/integrity/integrity.go

index bd85a503a0447df9f0c9e322e797ce93a1d1f746..bbb214170c681b069c5c79cf9dcd85b2e66bf917 100644 (file)
@@ -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) {