Skip to content

Commit 479fe1b

Browse files
committed
Docs: update README.md
Updates examples in README.md [skip ci]
1 parent 5bf6c7b commit 479fe1b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ module.exports = {
3131
loader: 'ejs-html-loader',
3232
options: {
3333
title: "The Ant: An Introduction",
34+
season: 1,
35+
episode: 9,
3436
production: process.env.ENV === "production"
3537
}
3638
}]
3739
}
38-
// ...
3940
};
4041
```
4142

@@ -53,6 +54,18 @@ available in your templates, e.g. `<%= this.somePropery %>`.
5354
Character used inside of angle brackets marking opening/closing tags.
5455
Defaults to `'%'`, as in `<%= some.variable %>`.
5556

57+
```js
58+
{
59+
// ...
60+
options: {
61+
delimiter: '$',
62+
title: 'The Naked Ant',
63+
season: 1,
64+
episode: 12
65+
}
66+
}
67+
```
68+
5669
## Includes
5770

5871
The EJS `filename` option is set automatically, so you may include partials

0 commit comments

Comments
 (0)