fancl 67accdedf4 init project 2 tahun lalu
..
.gitignore 67accdedf4 init project 2 tahun lalu
.travis.yml 67accdedf4 init project 2 tahun lalu
CHANGELOG.md 67accdedf4 init project 2 tahun lalu
LICENSE.txt 67accdedf4 init project 2 tahun lalu
Makefile 67accdedf4 init project 2 tahun lalu
README.md 67accdedf4 init project 2 tahun lalu
appveyor.yml 67accdedf4 init project 2 tahun lalu
crypto.go 67accdedf4 init project 2 tahun lalu
date.go 67accdedf4 init project 2 tahun lalu
defaults.go 67accdedf4 init project 2 tahun lalu
dict.go 67accdedf4 init project 2 tahun lalu
doc.go 67accdedf4 init project 2 tahun lalu
functions.go 67accdedf4 init project 2 tahun lalu
glide.yaml 67accdedf4 init project 2 tahun lalu
list.go 67accdedf4 init project 2 tahun lalu
network.go 67accdedf4 init project 2 tahun lalu
numeric.go 67accdedf4 init project 2 tahun lalu
reflect.go 67accdedf4 init project 2 tahun lalu
regex.go 67accdedf4 init project 2 tahun lalu
semver.go 67accdedf4 init project 2 tahun lalu
strings.go 67accdedf4 init project 2 tahun lalu
url.go 67accdedf4 init project 2 tahun lalu

README.md

Sprig: Template functions for Go templates

Build Status

The Go language comes with a built-in template language, but not very many template functions. Sprig is a library that provides more than 100 commonly used template functions.

It is inspired by the template functions found in Twig and in various JavaScript libraries, such as underscore.js.

Usage

Template developers: Please use Sprig's function documentation for detailed instructions and code snippets for the >100 template functions available.

Go developers: If you'd like to include Sprig as a library in your program, our API documentation is available at GoDoc.org.

For standard usage, read on.

Load the Sprig library

To load the Sprig FuncMap:


import (
  "github.com/Masterminds/sprig"
  "html/template"
)

// This example illustrates that the FuncMap *must* be set before the
// templates themselves are loaded.
tpl := template.Must(
  template.New("base").Funcs(sprig.FuncMap()).ParseGlob("*.html")
)


Calling the functions inside of templates

By convention, all functions are lowercase. This seems to follow the Go idiom for template functions (as opposed to template methods, which are TitleCase). For example, this:

{{ "hello!" | upper | repeat 5 }}

produces this:

HELLO!HELLO!HELLO!HELLO!HELLO!

Principles Driving Our Function Selection

We followed these principles to decide which functions to add and how to implement them:

  • Use template functions to build layout. The following types of operations are within the domain of template functions:
    • Formatting
    • Layout
    • Simple type conversions
    • Utilities that assist in handling common formatting and layout needs (e.g. arithmetic)
  • Template functions should not return errors unless there is no way to print a sensible value. For example, converting a string to an integer should not produce an error if conversion fails. Instead, it should display a default value.
  • Simple math is necessary for grid layouts, pagers, and so on. Complex math (anything other than arithmetic) should be done outside of templates.
  • Template functions only deal with the data passed into them. They never retrieve data from a source.
  • Finally, do not override core Go template functions.