package time

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

Package time provides template functions for measuring and displaying time.

Index

Types

type Namespace

type Namespace struct{}

Namespace provides template functions for the "time" namespace.

func New

func New() *Namespace

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

func (*Namespace) AsTime

func (ns *Namespace) AsTime(v interface{}, args ...interface{}) (interface{}, error)

AsTime converts the textual representation of the datetime string into a time.Time interface.

func (*Namespace) Duration

func (ns *Namespace) Duration(unit interface{}, number interface{}) (_time.Duration, error)

Duration converts the given number to a time.Duration. Unit is one of nanosecond/ns, microsecond/us/µs, millisecond/ms, second/s, minute/m or hour/h.

func (*Namespace) Format

func (ns *Namespace) Format(layout string, v interface{}) (string, error)

Format converts the textual representation of the datetime string into the other form or returns it of the time.Time value. These are formatted with the layout string

func (*Namespace) Now

func (ns *Namespace) Now() _time.Time

Now returns the current local time.

func (*Namespace) ParseDuration

func (ns *Namespace) ParseDuration(in interface{}) (_time.Duration, error)

ParseDuration parses a duration string. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". See https://golang.org/pkg/time/#ParseDuration

Source Files

init.go time.go

Version
v0.84.3
Published
Jun 29, 2021
Platform
linux/amd64
Imports
5 packages
Last checked
3 hours ago

Tools for package owners.