Skip to content

Commit

Permalink
Fix propagation of --no-escape to handlebars
Browse files Browse the repository at this point in the history
  • Loading branch information
filipbartek committed Feb 6, 2019
1 parent c7a271a commit 567b5af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/verbs/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ var _prep = function( src, dst, opts ) {
_opts.theme = (opts.theme && opts.theme.toLowerCase().trim()) || 'modern';
_opts.prettify = opts.prettify === true;
_opts.private = opts.private === true;
_opts.noescape = opts.noescape === true;
_opts.noescape = opts.escape === false;
_opts.css = opts.css;
_opts.pdf = opts.pdf;
_opts.wrap = opts.wrap || 60;
Expand Down

0 comments on commit 567b5af

Please sign in to comment.