package encoding

import "github.com/gohugoio/hugo/tpl/encoding"

Package encoding provides template functions for encoding content.

Index

Types

type Namespace

type Namespace struct{}

Namespace provides template functions for the "encoding" namespace.

func New

func New() *Namespace

New returns a new instance of the encoding-namespaced template functions.

func (*Namespace) Base64Decode

func (ns *Namespace) Base64Decode(content any) (string, error)

Base64Decode returns the base64 decoding of the given content.

func (*Namespace) Base64Encode

func (ns *Namespace) Base64Encode(content any) (string, error)

Base64Encode returns the base64 encoding of the given content.

func (*Namespace) Jsonify

func (ns *Namespace) Jsonify(args ...any) (template.HTML, error)

Jsonify encodes a given object to JSON. To pretty print the JSON, pass a map or dictionary of options as the first value in args. Supported options are "prefix" and "indent". Each JSON element in the output will begin on a new line beginning with prefix followed by one or more copies of indent according to the indentation nesting.

Source Files

encoding.go init.go

Version
v0.144.2 (latest)
Published
Feb 19, 2025
Platform
linux/amd64
Imports
11 packages
Last checked
7 hours ago

Tools for package owners.