Documentation ¶
Overview ¶
Package debug provides template functions to help debugging templates.
Index ¶
- type Namespace
- func (ns *Namespace) Dump(val any) string
- func (ns *Namespace) TestDeprecationErr(item, alternative string) string
- func (ns *Namespace) TestDeprecationInfo(item, alternative string) string
- func (ns *Namespace) TestDeprecationWarn(item, alternative string) string
- func (ns *Namespace) Timer(name string) Timer
- func (ns *Namespace) VisualizeSpaces(val any) string
- type Timer
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 (*Namespace) Dump ¶
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
Internal template func, used in tests only.
func (*Namespace) TestDeprecationInfo ¶ added in v0.120.2
Internal template func, used in tests only.
func (*Namespace) TestDeprecationWarn ¶ added in v0.120.2
Internal template func, used in tests only.
func (*Namespace) VisualizeSpaces ¶ added in v0.112.0
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.