grunt-contrib-jst/docs/jst-examples.md

16 lines
229 B
Markdown
Raw Normal View History

2012-10-19 07:02:45 +08:00
# Examples
```js
jst: {
compile: {
options: {
templateSettings: {
interpolate : /\{\{(.+?)\}\}/g
}
},
files: {
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
}
}
}
```