debug

package
v0.125.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 18, 2024 License: Apache-2.0 Imports: 11 Imported by: 2

Documentation

Overview

Package debug provides template functions to help debugging templates.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Namespace

type Namespace struct {
	// contains filtered or unexported fields
}

Namespace provides template functions for the "debug" namespace.

func New

func New(d *deps.Deps) *Namespace

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

func (*Namespace) Dump

func (ns *Namespace) Dump(val any) string

Dump returns a object dump of val as a string. Note that not every value passed to Dump will print so nicely, but we'll improve on that.

We recommend using the "go" Chroma lexer to format the output nicely.

Also note that the output from Dump may change from Hugo version to the next, so don't depend on a specific output.

func (*Namespace) TestDeprecationErr added in v0.120.2

func (ns *Namespace) TestDeprecationErr(item, alternative string) string

Internal template func, used in tests only.

func (*Namespace) TestDeprecationInfo added in v0.120.2

func (ns *Namespace) TestDeprecationInfo(item, alternative string) string

Internal template func, used in tests only.

func (*Namespace) TestDeprecationWarn added in v0.120.2

func (ns *Namespace) TestDeprecationWarn(item, alternative string) string

Internal template func, used in tests only.

func (*Namespace) Timer added in v0.120.0

func (ns *Namespace) Timer(name string) Timer

func (*Namespace) VisualizeSpaces added in v0.112.0

func (ns *Namespace) VisualizeSpaces(val any) string

VisualizeSpaces returns a string with spaces replaced by a visible string.

type Timer added in v0.120.0

type Timer interface {
	// Stop stops the timer and returns an empty string.
	// Stop can be called multiple times, but only the first call will stop the timer.
	// If Stop is not called, the timer will be stopped when the build ends.
	Stop() string
}

Timer is a timer that can be stopped.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL