Skip to content

Commit

Permalink
fix: fixed call to helper-for-markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathas committed May 19, 2022
1 parent fac1591 commit 6acb42a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Object.defineProperty(helpers, 'markdown', {
get: function() {
// this is defined as a getter to avoid calling this function
// unless the helper is actually used
return markdown || (markdown = require('helper-markdown')());
return markdown || (markdown = require('helper-for-markdown')());
}
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "helpers-for-handlebars",
"description": "More than 130 Handlebars helpers in ~20 categories. Helpers can be used with Assemble, Generate, Verb, Ghost, gulp-handlebars, grunt-handlebars, consolidate, or any node.js/Handlebars project.",
"version": "0.10.2",
"version": "0.10.3",
"homepage": "https://github.com/jonathas/handlebars-helpers",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
Expand Down

0 comments on commit 6acb42a

Please sign in to comment.