github.com/kdevb0x/go@v0.0.0-20180115030120-39687051e9e7/src/text/template/doc.go (about)

     1  // Copyright 2011 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  /*
     6  Package template implements data-driven templates for generating textual output.
     7  
     8  To generate HTML output, see package html/template, which has the same interface
     9  as this package but automatically secures HTML output against certain attacks.
    10  
    11  Templates are executed by applying them to a data structure. Annotations in the
    12  template refer to elements of the data structure (typically a field of a struct
    13  or a key in a map) to control execution and derive values to be displayed.
    14  Execution of the template walks the structure and sets the cursor, represented
    15  by a period '.' and called "dot", to the value at the current location in the
    16  structure as execution proceeds.
    17  
    18  The input text for a template is UTF-8-encoded text in any format.
    19  "Actions"--data evaluations or control structures--are delimited by
    20  "{{" and "}}"; all text outside actions is copied to the output unchanged.
    21  Except for raw strings, actions may not span newlines, although comments can.
    22  
    23  Once parsed, a template may be executed safely in parallel, although if parallel
    24  executions share a Writer the output may be interleaved.
    25  
    26  Here is a trivial example that prints "17 items are made of wool".
    27  
    28  	type Inventory struct {
    29  		Material string
    30  		Count    uint
    31  	}
    32  	sweaters := Inventory{"wool", 17}
    33  	tmpl, err := template.New("test").Parse("{{.Count}} items are made of {{.Material}}")
    34  	if err != nil { panic(err) }
    35  	err = tmpl.Execute(os.Stdout, sweaters)
    36  	if err != nil { panic(err) }
    37  
    38  More intricate examples appear below.
    39  
    40  Text and spaces
    41  
    42  By default, all text between actions is copied verbatim when the template is
    43  executed. For example, the string " items are made of " in the example above appears
    44  on standard output when the program is run.
    45  
    46  However, to aid in formatting template source code, if an action's left delimiter
    47  (by default "{{") is followed immediately by a minus sign and ASCII space character
    48  ("{{- "), all trailing white space is trimmed from the immediately preceding text.
    49  Similarly, if the right delimiter ("}}") is preceded by a space and minus sign
    50  (" -}}"), all leading white space is trimmed from the immediately following text.
    51  In these trim markers, the ASCII space must be present; "{{-3}}" parses as an
    52  action containing the number -3.
    53  
    54  For instance, when executing the template whose source is
    55  
    56  	"{{23 -}} < {{- 45}}"
    57  
    58  the generated output would be
    59  
    60  	"23<45"
    61  
    62  For this trimming, the definition of white space characters is the same as in Go:
    63  space, horizontal tab, carriage return, and newline.
    64  
    65  Actions
    66  
    67  Here is the list of actions. "Arguments" and "pipelines" are evaluations of
    68  data, defined in detail in the corresponding sections that follow.
    69  
    70  */
    71  //	{{/* a comment */}}
    72  //		A comment; discarded. May contain newlines.
    73  //		Comments do not nest and must start and end at the
    74  //		delimiters, as shown here.
    75  /*
    76  
    77  	{{pipeline}}
    78  		The default textual representation (the same as would be
    79  		printed by fmt.Print) of the value of the pipeline is copied
    80  		to the output.
    81  
    82  	{{if pipeline}} T1 {{end}}
    83  		If the value of the pipeline is empty, no output is generated;
    84  		otherwise, T1 is executed. The empty values are false, 0, any
    85  		nil pointer or interface value, and any array, slice, map, or
    86  		string of length zero.
    87  		Dot is unaffected.
    88  
    89  	{{if pipeline}} T1 {{else}} T0 {{end}}
    90  		If the value of the pipeline is empty, T0 is executed;
    91  		otherwise, T1 is executed. Dot is unaffected.
    92  
    93  	{{if pipeline}} T1 {{else if pipeline}} T0 {{end}}
    94  		To simplify the appearance of if-else chains, the else action
    95  		of an if may include another if directly; the effect is exactly
    96  		the same as writing
    97  			{{if pipeline}} T1 {{else}}{{if pipeline}} T0 {{end}}{{end}}
    98  
    99  	{{range pipeline}} T1 {{end}}
   100  		The value of the pipeline must be an array, slice, map, or channel.
   101  		If the value of the pipeline has length zero, nothing is output;
   102  		otherwise, dot is set to the successive elements of the array,
   103  		slice, or map and T1 is executed. If the value is a map and the
   104  		keys are of basic type with a defined order ("comparable"), the
   105  		elements will be visited in sorted key order.
   106  
   107  	{{range pipeline}} T1 {{else}} T0 {{end}}
   108  		The value of the pipeline must be an array, slice, map, or channel.
   109  		If the value of the pipeline has length zero, dot is unaffected and
   110  		T0 is executed; otherwise, dot is set to the successive elements
   111  		of the array, slice, or map and T1 is executed.
   112  
   113  	{{break}}
   114  		Break out of the surrounding range loop.
   115  
   116  	{{continue}}
   117  		Begin the next iteration of the surrounding range loop.
   118  
   119  	{{template "name"}}
   120  		The template with the specified name is executed with nil data.
   121  
   122  	{{template "name" pipeline}}
   123  		The template with the specified name is executed with dot set
   124  		to the value of the pipeline.
   125  
   126  	{{block "name" pipeline}} T1 {{end}}
   127  		A block is shorthand for defining a template
   128  			{{define "name"}} T1 {{end}}
   129  		and then executing it in place
   130  			{{template "name" .}}
   131  		The typical use is to define a set of root templates that are
   132  		then customized by redefining the block templates within.
   133  
   134  	{{with pipeline}} T1 {{end}}
   135  		If the value of the pipeline is empty, no output is generated;
   136  		otherwise, dot is set to the value of the pipeline and T1 is
   137  		executed.
   138  
   139  	{{with pipeline}} T1 {{else}} T0 {{end}}
   140  		If the value of the pipeline is empty, dot is unaffected and T0
   141  		is executed; otherwise, dot is set to the value of the pipeline
   142  		and T1 is executed.
   143  
   144  Arguments
   145  
   146  An argument is a simple value, denoted by one of the following.
   147  
   148  	- A boolean, string, character, integer, floating-point, imaginary
   149  	  or complex constant in Go syntax. These behave like Go's untyped
   150  	  constants.
   151  	- The keyword nil, representing an untyped Go nil.
   152  	- The character '.' (period):
   153  		.
   154  	  The result is the value of dot.
   155  	- A variable name, which is a (possibly empty) alphanumeric string
   156  	  preceded by a dollar sign, such as
   157  		$piOver2
   158  	  or
   159  		$
   160  	  The result is the value of the variable.
   161  	  Variables are described below.
   162  	- The name of a field of the data, which must be a struct, preceded
   163  	  by a period, such as
   164  		.Field
   165  	  The result is the value of the field. Field invocations may be
   166  	  chained:
   167  	    .Field1.Field2
   168  	  Fields can also be evaluated on variables, including chaining:
   169  	    $x.Field1.Field2
   170  	- The name of a key of the data, which must be a map, preceded
   171  	  by a period, such as
   172  		.Key
   173  	  The result is the map element value indexed by the key.
   174  	  Key invocations may be chained and combined with fields to any
   175  	  depth:
   176  	    .Field1.Key1.Field2.Key2
   177  	  Although the key must be an alphanumeric identifier, unlike with
   178  	  field names they do not need to start with an upper case letter.
   179  	  Keys can also be evaluated on variables, including chaining:
   180  	    $x.key1.key2
   181  	- The name of a niladic method of the data, preceded by a period,
   182  	  such as
   183  		.Method
   184  	  The result is the value of invoking the method with dot as the
   185  	  receiver, dot.Method(). Such a method must have one return value (of
   186  	  any type) or two return values, the second of which is an error.
   187  	  If it has two and the returned error is non-nil, execution terminates
   188  	  and an error is returned to the caller as the value of Execute.
   189  	  Method invocations may be chained and combined with fields and keys
   190  	  to any depth:
   191  	    .Field1.Key1.Method1.Field2.Key2.Method2
   192  	  Methods can also be evaluated on variables, including chaining:
   193  	    $x.Method1.Field
   194  	- The name of a niladic function, such as
   195  		fun
   196  	  The result is the value of invoking the function, fun(). The return
   197  	  types and values behave as in methods. Functions and function
   198  	  names are described below.
   199  	- A parenthesized instance of one the above, for grouping. The result
   200  	  may be accessed by a field or map key invocation.
   201  		print (.F1 arg1) (.F2 arg2)
   202  		(.StructValuedMethod "arg").Field
   203  
   204  Arguments may evaluate to any type; if they are pointers the implementation
   205  automatically indirects to the base type when required.
   206  If an evaluation yields a function value, such as a function-valued
   207  field of a struct, the function is not invoked automatically, but it
   208  can be used as a truth value for an if action and the like. To invoke
   209  it, use the call function, defined below.
   210  
   211  Pipelines
   212  
   213  A pipeline is a possibly chained sequence of "commands". A command is a simple
   214  value (argument) or a function or method call, possibly with multiple arguments:
   215  
   216  	Argument
   217  		The result is the value of evaluating the argument.
   218  	.Method [Argument...]
   219  		The method can be alone or the last element of a chain but,
   220  		unlike methods in the middle of a chain, it can take arguments.
   221  		The result is the value of calling the method with the
   222  		arguments:
   223  			dot.Method(Argument1, etc.)
   224  	functionName [Argument...]
   225  		The result is the value of calling the function associated
   226  		with the name:
   227  			function(Argument1, etc.)
   228  		Functions and function names are described below.
   229  
   230  A pipeline may be "chained" by separating a sequence of commands with pipeline
   231  characters '|'. In a chained pipeline, the result of each command is
   232  passed as the last argument of the following command. The output of the final
   233  command in the pipeline is the value of the pipeline.
   234  
   235  The output of a command will be either one value or two values, the second of
   236  which has type error. If that second value is present and evaluates to
   237  non-nil, execution terminates and the error is returned to the caller of
   238  Execute.
   239  
   240  Variables
   241  
   242  A pipeline inside an action may initialize a variable to capture the result.
   243  The initialization has syntax
   244  
   245  	$variable := pipeline
   246  
   247  where $variable is the name of the variable. An action that declares a
   248  variable produces no output.
   249  
   250  If a "range" action initializes a variable, the variable is set to the
   251  successive elements of the iteration. Also, a "range" may declare two
   252  variables, separated by a comma:
   253  
   254  	range $index, $element := pipeline
   255  
   256  in which case $index and $element are set to the successive values of the
   257  array/slice index or map key and element, respectively. Note that if there is
   258  only one variable, it is assigned the element; this is opposite to the
   259  convention in Go range clauses.
   260  
   261  A variable's scope extends to the "end" action of the control structure ("if",
   262  "with", or "range") in which it is declared, or to the end of the template if
   263  there is no such control structure. A template invocation does not inherit
   264  variables from the point of its invocation.
   265  
   266  When execution begins, $ is set to the data argument passed to Execute, that is,
   267  to the starting value of dot.
   268  
   269  Examples
   270  
   271  Here are some example one-line templates demonstrating pipelines and variables.
   272  All produce the quoted word "output":
   273  
   274  	{{"\"output\""}}
   275  		A string constant.
   276  	{{`"output"`}}
   277  		A raw string constant.
   278  	{{printf "%q" "output"}}
   279  		A function call.
   280  	{{"output" | printf "%q"}}
   281  		A function call whose final argument comes from the previous
   282  		command.
   283  	{{printf "%q" (print "out" "put")}}
   284  		A parenthesized argument.
   285  	{{"put" | printf "%s%s" "out" | printf "%q"}}
   286  		A more elaborate call.
   287  	{{"output" | printf "%s" | printf "%q"}}
   288  		A longer chain.
   289  	{{with "output"}}{{printf "%q" .}}{{end}}
   290  		A with action using dot.
   291  	{{with $x := "output" | printf "%q"}}{{$x}}{{end}}
   292  		A with action that creates and uses a variable.
   293  	{{with $x := "output"}}{{printf "%q" $x}}{{end}}
   294  		A with action that uses the variable in another action.
   295  	{{with $x := "output"}}{{$x | printf "%q"}}{{end}}
   296  		The same, but pipelined.
   297  
   298  Functions
   299  
   300  During execution functions are found in two function maps: first in the
   301  template, then in the global function map. By default, no functions are defined
   302  in the template but the Funcs method can be used to add them.
   303  
   304  Predefined global functions are named as follows.
   305  
   306  	and
   307  		Returns the boolean AND of its arguments by returning the
   308  		first empty argument or the last argument, that is,
   309  		"and x y" behaves as "if x then y else x". All the
   310  		arguments are evaluated.
   311  	call
   312  		Returns the result of calling the first argument, which
   313  		must be a function, with the remaining arguments as parameters.
   314  		Thus "call .X.Y 1 2" is, in Go notation, dot.X.Y(1, 2) where
   315  		Y is a func-valued field, map entry, or the like.
   316  		The first argument must be the result of an evaluation
   317  		that yields a value of function type (as distinct from
   318  		a predefined function such as print). The function must
   319  		return either one or two result values, the second of which
   320  		is of type error. If the arguments don't match the function
   321  		or the returned error value is non-nil, execution stops.
   322  	html
   323  		Returns the escaped HTML equivalent of the textual
   324  		representation of its arguments. This function is unavailable
   325  		in html/template, with a few exceptions.
   326  	index
   327  		Returns the result of indexing its first argument by the
   328  		following arguments. Thus "index x 1 2 3" is, in Go syntax,
   329  		x[1][2][3]. Each indexed item must be a map, slice, or array.
   330  	js
   331  		Returns the escaped JavaScript equivalent of the textual
   332  		representation of its arguments.
   333  	len
   334  		Returns the integer length of its argument.
   335  	not
   336  		Returns the boolean negation of its single argument.
   337  	or
   338  		Returns the boolean OR of its arguments by returning the
   339  		first non-empty argument or the last argument, that is,
   340  		"or x y" behaves as "if x then x else y". All the
   341  		arguments are evaluated.
   342  	print
   343  		An alias for fmt.Sprint
   344  	printf
   345  		An alias for fmt.Sprintf
   346  	println
   347  		An alias for fmt.Sprintln
   348  	urlquery
   349  		Returns the escaped value of the textual representation of
   350  		its arguments in a form suitable for embedding in a URL query.
   351  		This function is unavailable in html/template, with a few
   352  		exceptions.
   353  
   354  The boolean functions take any zero value to be false and a non-zero
   355  value to be true.
   356  
   357  There is also a set of binary comparison operators defined as
   358  functions:
   359  
   360  	eq
   361  		Returns the boolean truth of arg1 == arg2
   362  	ne
   363  		Returns the boolean truth of arg1 != arg2
   364  	lt
   365  		Returns the boolean truth of arg1 < arg2
   366  	le
   367  		Returns the boolean truth of arg1 <= arg2
   368  	gt
   369  		Returns the boolean truth of arg1 > arg2
   370  	ge
   371  		Returns the boolean truth of arg1 >= arg2
   372  
   373  For simpler multi-way equality tests, eq (only) accepts two or more
   374  arguments and compares the second and subsequent to the first,
   375  returning in effect
   376  
   377  	arg1==arg2 || arg1==arg3 || arg1==arg4 ...
   378  
   379  (Unlike with || in Go, however, eq is a function call and all the
   380  arguments will be evaluated.)
   381  
   382  The comparison functions work on basic types only (or named basic
   383  types, such as "type Celsius float32"). They implement the Go rules
   384  for comparison of values, except that size and exact type are
   385  ignored, so any integer value, signed or unsigned, may be compared
   386  with any other integer value. (The arithmetic value is compared,
   387  not the bit pattern, so all negative integers are less than all
   388  unsigned integers.) However, as usual, one may not compare an int
   389  with a float32 and so on.
   390  
   391  Associated templates
   392  
   393  Each template is named by a string specified when it is created. Also, each
   394  template is associated with zero or more other templates that it may invoke by
   395  name; such associations are transitive and form a name space of templates.
   396  
   397  A template may use a template invocation to instantiate another associated
   398  template; see the explanation of the "template" action above. The name must be
   399  that of a template associated with the template that contains the invocation.
   400  
   401  Nested template definitions
   402  
   403  When parsing a template, another template may be defined and associated with the
   404  template being parsed. Template definitions must appear at the top level of the
   405  template, much like global variables in a Go program.
   406  
   407  The syntax of such definitions is to surround each template declaration with a
   408  "define" and "end" action.
   409  
   410  The define action names the template being created by providing a string
   411  constant. Here is a simple example:
   412  
   413  	`{{define "T1"}}ONE{{end}}
   414  	{{define "T2"}}TWO{{end}}
   415  	{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
   416  	{{template "T3"}}`
   417  
   418  This defines two templates, T1 and T2, and a third T3 that invokes the other two
   419  when it is executed. Finally it invokes T3. If executed this template will
   420  produce the text
   421  
   422  	ONE TWO
   423  
   424  By construction, a template may reside in only one association. If it's
   425  necessary to have a template addressable from multiple associations, the
   426  template definition must be parsed multiple times to create distinct *Template
   427  values, or must be copied with the Clone or AddParseTree method.
   428  
   429  Parse may be called multiple times to assemble the various associated templates;
   430  see the ParseFiles and ParseGlob functions and methods for simple ways to parse
   431  related templates stored in files.
   432  
   433  A template may be executed directly or through ExecuteTemplate, which executes
   434  an associated template identified by name. To invoke our example above, we
   435  might write,
   436  
   437  	err := tmpl.Execute(os.Stdout, "no data needed")
   438  	if err != nil {
   439  		log.Fatalf("execution failed: %s", err)
   440  	}
   441  
   442  or to invoke a particular template explicitly by name,
   443  
   444  	err := tmpl.ExecuteTemplate(os.Stdout, "T2", "no data needed")
   445  	if err != nil {
   446  		log.Fatalf("execution failed: %s", err)
   447  	}
   448  
   449  */
   450  package template