tpl: Update Jsonify to return pretty-print output

Fixes #5040
This commit is contained in:
Sean Prashad
2018-10-20 22:44:15 -04:00
committed by Bjørn Erik Pedersen
parent 4a366fcfee
commit 5a52cd5f92
4 changed files with 5 additions and 5 deletions

View File

@@ -50,9 +50,9 @@ func (ns *Namespace) Base64Encode(content interface{}) (string, error) {
return base64.StdEncoding.EncodeToString([]byte(conv)), nil
}
// Jsonify encodes a given object to JSON.
// Jsonify encodes a given object to JSON, returning pretty printed output.
func (ns *Namespace) Jsonify(v interface{}) (template.HTML, error) {
b, err := json.Marshal(v)
b, err := json.MarshalIndent(v, "", " ")
if err != nil {
return "", err
}