forked from mustache/mustache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mustache.5.ron
584 lines (393 loc) · 12.6 KB
/
mustache.5.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
mustache(5) -- Logic-less templates.
====================================
## SYNOPSIS
A typical Mustache template:
Hello {{name}}
You have just won {{value}} dollars!
{{#in_ca}}
Well, {{taxed_value}} dollars, after taxes.
{{/in_ca}}
Given the following hash:
{
"name": "Chris",
"value": 10000,
"taxed_value": 10000 - (10000 * 0.4),
"in_ca": true
}
Will produce the following:
Hello Chris
You have just won 10000 dollars!
Well, 6000.0 dollars, after taxes.
## DESCRIPTION
Mustache can be used for HTML, config files, source code -
anything. It works by expanding tags in a template using values
provided in a hash or object.
We call it "logic-less" because there are no if statements, else
clauses, or for loops. Instead there are only tags. Some tags are
replaced with a value, some nothing, and others a series of
values. This document explains the different types of Mustache tags.
The Mustache language has a [formal specification][spec]. The current
manpage reflects version 1.3.0 of the specification, including the
official-but-optional extensions for lambdas and inheritance.
[spec]: https://github.com/mustache/spec
## TAG TYPES
Tags are indicated by the double mustaches. `{{person}}` is a tag, as
is `{{#person}}`. In both examples, we'd refer to `person` as the key
or tag key. Let's talk about the different types of tags.
### Variables
The most basic tag type is the variable. A `{{name}}` tag in a basic
template will try to find the `name` key in the current context. If
there is no `name` key, the parent contexts will be checked recursively.
If the top context is reached and the `name` key is still not found,
nothing will be rendered.
All variables are HTML escaped by default. If you want to return raw contents
without escaping, use the triple mustache: `{{{name}}}`.
You can also use `&` to return its raw contents: `{{& name}}`. This may be
useful when changing delimiters (see "Set Delimiter" below).
By default a variable "miss" returns an empty string. This can usually
be configured in your Mustache library. The Ruby version of Mustache
supports raising an exception in this situation, for instance.
Template:
* {{name}}
* {{age}}
* {{company}}
* {{{company}}}
Hash:
{
"name": "Chris",
"company": "<b>GitHub</b>"
}
Output:
* Chris
*
* <b>GitHub</b>
* <b>GitHub</b>
**Dotted Names**
If the `name` contains dots, it is split on the dots to obtain multiple
keys. The first key is looked up in the context as described above. If it
is found, the next key is looked up within the previous result. This is
repeated until a key is not found or until the last key is found. The
final result is interpolated as above.
Template:
* {{client.name}}
* {{age}}
* {{client.company.name}}
* {{{company.name}}}
Hash:
{
"client": {
"name": "Chris & Friends",
"age": 50
},
"company": {
"name": "<b>GitHub</b>"
}
}
Output:
* Chris & Friends
*
*
* <b>GitHub</b>
**Implicit Iterator**
As a special case, if the `name` consists of only a dot and nothing else,
the value that is the current context is interpolated as a whole. This
is especially useful if the parent context is a list; see **Sections**
below.
Template:
* {{.}}
Current context:
"Hello!"
Output:
* Hello!
**Lambdas**
If any value found during the lookup is a callable object, such as a
function or lambda, this object will be invoked with zero arguments. The
value that is returned is then used instead of the callable object itself.
An **optional** part of the specification states that if the final key in
the `name` is a lambda that returns a string, then that string should be
rendered as a Mustache template before interpolation. It will be rendered
using the default delimiters (see **Set Delimiter** below) against the
current context.
Template:
* {{time.hour}}
* {{today}}
Hash:
{
"year": 1970,
"month": 1,
"day": 1,
"time": function() {
return {
"hour": 0,
"minute": 0,
"second": 0
}
},
"today": function() {
return "{{year}}-{{month}}-{{day}}"
}
}
Output:
* 0
* 1970-1-1
### Sections
Sections render blocks of text zero or more times, depending on the
value of the key in the current context.
Lookup of dotted names works in the same way as with variables, except for
slightly different treatment of lambdas. More on this below.
A section begins with a pound and ends with a slash. That is,
`{{#person}}` begins a "person" section while `{{/person}}` ends it.
The behavior of the section is determined by the final value of the key
lookup.
**False Values or Empty Lists**
If the `person` key exists and has a value of false or an empty
list, the HTML between the pound and slash will not be displayed.
Template:
Shown.
{{#person}}
Never shown!
{{/person}}
Hash:
{
"person": false
}
Output:
Shown.
**Non-Empty Lists**
If the `person` key exists and has a non-false value, the HTML between
the pound and slash will be rendered and displayed one or more times.
When the value is a non-empty list, the text in the block will be
displayed once for each item in the list. The context of the block
will be set to the current item for each iteration. In this way we can
loop over collections.
Template:
{{#repo}}
<b>{{name}}</b>
{{/repo}}
Hash:
{
"repo": [
{ "name": "resque" },
{ "name": "hub" },
{ "name": "rip" }
]
}
Output:
<b>resque</b>
<b>hub</b>
<b>rip</b>
The same effect as above can be obtained without nested objects, by using
the implicit iterator (see **Variables** above).
Template:
{{#repo}}
<b>{{.}}</b>
{{/repo}}
Hash:
{
"repo": ["resque", "hub", "rip"]
}
Output:
<b>resque</b>
<b>hub</b>
<b>rip</b>
**Lambdas**
When any value found during the lookup is a callable object, such as a
function or lambda, the object will be invoked and passed the block of
text. The text passed is the literal block, unrendered. `{{tags}}` will
not have been expanded.
An **optional** part of the specification states that if the final key in
the `name` is a lambda that returns a string, then that string replaces
the content of the section. It will be rendered using the same delimiters
(see **Set Delimiter** below) as the original section content. In this way
you can implement filters or caching.
Template:
{{#wrapped}}{{name}} is awesome.{{/wrapped}}
Hash:
{
"name": "Willy",
"wrapped": function(text) {
return "<b>" + text + "</b>"
}
}
Output:
<b>Willy is awesome.</b>
**Non-False Values**
When the value is non-false but not a list, it will be used as the
context for a single rendering of the block.
Template:
{{#person?}}
Hi {{name}}!
{{/person?}}
Hash:
{
"person?": { "name": "Jon" }
}
Output:
Hi Jon!
### Inverted Sections
An inverted section begins with a caret (hat) and ends with a
slash. That is `{{^person}}` begins a "person" inverted section while
`{{/person}}` ends it.
While sections can be used to render text zero or more times based on the
value of the key, inverted sections may render text once based
on the inverse value of the key. That is, they will be rendered
if the key doesn't exist, is false, or is an empty list.
Template:
{{#repo}}
<b>{{name}}</b>
{{/repo}}
{{^repo}}
No repos :(
{{/repo}}
Hash:
{
"repo": []
}
Output:
No repos :(
### Comments
Comments begin with a bang and are ignored. The following template:
<h1>Today{{! ignore me }}.</h1>
Will render as follows:
<h1>Today.</h1>
Comments may contain newlines.
### Partials
Partials begin with a greater than sign, like `{{> box}}`.
Partials are rendered at runtime (as opposed to compile time), so
recursive partials are possible. Just avoid infinite loops.
They also inherit the calling context. Whereas in ERB you may have
this:
<%= partial :next_more, :start => start, :size => size %>
Mustache requires only this:
{{> next_more}}
Why? Because the `next_more.mustache` file will inherit the `size` and
`start` methods from the calling context.
In this way you may want to think of partials as includes, or template
expansion, even though it's not literally true.
For example, this template and partial:
base.mustache:
<h2>Names</h2>
{{#names}}
{{> user}}
{{/names}}
user.mustache:
<strong>{{name}}</strong>
Can be thought of as a single, expanded template:
<h2>Names</h2>
{{#names}}
<strong>{{name}}</strong>
{{/names}}
**Dynamic Names**
Partials can be loaded dynamically at runtime using Dynamic Names; an
**optional** part of the Mustache specification which allows to dynamically
determine a tag's content at runtime.
Dynamic Names consists of an asterisk, followed by a dotted name which follows
the same notation and the same resolution as in an variable tag. That is
`{{>*dynamic}}`. It can be thought as the following **hypothetical** tag
(which is **not allowed**!): `{{>{{dynamic}}}}`.
Templates:
main.mustache:
Hello {{>*dynamic}}
world.template:
everyone!
Hash:
{
"dynamic": "world"
}
Output:
Hello everyone!
### Blocks
A block begins with a dollar and ends with a slash. That is, `{{$title}}`
begins a "title" block and `{{/title}}` ends it.
Blocks mark parts of the template that may be overridden. This can be done
with a block of the same name within a parent section in the calling
template (see **Parents** below). If not overridden, the contents of a
block render just as if the `{{$title}}` and `{{/title}}` tags weren't
there.
Blocks could be thought of as template parameters or as inline partials
that may be passed to another template. They are part of the optional
inheritance extension.
Template `article.mustache`:
<h1>{{$title}}The News of Today{{/title}}</h1>
{{$body}}
<p>Nothing special happened.</p>
{{/body}}
Output:
<h1>The News of Today</h1>
<p>Nothing special happened.</p>
### Parents
A parent begins with a less than sign and ends with a slash. That is,
`{{<article}}` begins an "article" parent and `{{/article}}` ends it.
Like an `{{>article}}` partial, a parent lets you expand another template
inside the current one. Unlike a partial, a parent also lets you override
blocks of the other template.
Blocks within a parent can again be overridden by another including
template. Other content within a parent is ignored, like comments.
Template:
{{<article}}
Never shown
{{$body}}
{{#headlines}}
<p>{{.}}</p>
{{/headlines}}
{{/body}}
{{/article}}
{{<article}}
{{$title}}Yesterday{{/title}}
{{/article}}
Hash:
{
"headlines": [
"A pug's handler grew mustaches.",
"What an exciting day!"
]
}
Output, assuming the `article.mustache` from before:
<h1>The News of Today</h1>
<p>A pug's handler grew mustaches.</p>
<p>What an exciting day!</p>
<h1>Yesterday</h1>
<p>Nothing special happened.</p>
**Dynamic Names**
Some mustache implementations may allow the use of Dynamic Names in
parent tags, similar to dynamic names in partials. Here's an example of
how Dynamic Names in parent tags work.
Templates:
{{!normal.mustache}}
{{$text}}Here goes nothing.{{/text}}
{{!bold.mustache}}
<b>{{$text}}Here also goes nothing but it's bold.{{/text}}</b>
{{!dynamic.mustache}}
{{<*dynamic}}
{{$text}}Hello World!{{/text}}
{{/*dynamic}}
Hash:
{
"dynamic": "bold"
}
Output:
<b>Hello World!</b>
### Set Delimiter
Set Delimiter tags start with an equal sign and change the tag
delimiters from `{{` and `}}` to custom strings.
Consider the following contrived example:
* {{default_tags}}
{{=<% %>=}}
* <% erb_style_tags %>
<%={{ }}=%>
* {{ default_tags_again }}
Here we have a list with three items. The first item uses the default
tag style, the second uses erb style as defined by the Set Delimiter
tag, and the third returns to the default style after yet another Set
Delimiter declaration.
According to [ctemplates][ct], this "is useful for languages like TeX, where
double-braces may occur in the text and are awkward to use for
markup."
Custom delimiters may not contain whitespace or the equals sign.
[ct]: http://goog-ctemplate.sourceforge.net/doc/howto.html
## COPYRIGHT
Mustache is Copyright (C) 2009 Chris Wanstrath
Original CTemplate by Google
## SEE ALSO
mustache(1),
<http://mustache.github.io/>