We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bf6c7b commit 479fe1bCopy full SHA for 479fe1b
README.md
@@ -31,11 +31,12 @@ module.exports = {
31
loader: 'ejs-html-loader',
32
options: {
33
title: "The Ant: An Introduction",
34
+ season: 1,
35
+ episode: 9,
36
production: process.env.ENV === "production"
37
}
38
}]
39
- // ...
40
};
41
```
42
@@ -53,6 +54,18 @@ available in your templates, e.g. `<%= this.somePropery %>`.
53
54
Character used inside of angle brackets marking opening/closing tags.
55
Defaults to `'%'`, as in `<%= some.variable %>`.
56
57
+```js
58
+{
59
+ // ...
60
+ options: {
61
+ delimiter: '$',
62
+ title: 'The Naked Ant',
63
64
+ episode: 12
65
+ }
66
+}
67
+```
68
+
69
## Includes
70
71
The EJS `filename` option is set automatically, so you may include partials
0 commit comments