diff --git a/readme.md b/readme.md
index b0c66e5..7e94a9d 100644
--- a/readme.md
+++ b/readme.md
@@ -21,6 +21,7 @@ npm install --save-dev gulp-compile-handlebars
Hello {{firstName}}
HELLO! {{capitals firstName}}
{{> footer}}
+{{> footer2}}
```
### `gulpfile.js`
@@ -34,6 +35,7 @@ gulp.task('default', function () {
firstName: 'Kaanon'
},
options = {
+ ignorePartials: true, //ignores the unknown footer2 partial in the handlebars template, defaults to false
partials : {
footer : ''
},