package inflect

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

Package inflect provides template functions for the inflection of words.

Index

Types

type Namespace

type Namespace struct{}

Namespace provides template functions for the "inflect" namespace.

func New

func New() *Namespace

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

func (*Namespace) Humanize

func (ns *Namespace) Humanize(in any) (string, error)

Humanize returns the humanized form of a single parameter.

If the parameter is either an integer or a string containing an integer value, the behavior is to add the appropriate ordinal.

Example:  "my-first-post" -> "My first post"
Example:  "103" -> "103rd"
Example:  52 -> "52nd"

func (*Namespace) Pluralize

func (ns *Namespace) Pluralize(in any) (string, error)

Pluralize returns the plural form of a single word.

func (*Namespace) Singularize

func (ns *Namespace) Singularize(in any) (string, error)

Singularize returns the singular form of a single word.

Source Files

inflect.go init.go

Version
v0.101.0
Published
Jun 16, 2022
Platform
linux/amd64
Imports
6 packages
Last checked
3 hours ago

Tools for package owners.