Skip to content

Commit

Permalink
Merge pull request #226 from alisd23/master
Browse files Browse the repository at this point in the history
Fix markdown by making properties enumerable
  • Loading branch information
jonschlinkert authored Jan 8, 2017
2 parents ae4b6ec + d7602f4 commit c82d86a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var md;

Object.defineProperty(helpers, 'markdown', {
configurable: true,
enumerable: true,
set: function(val) {
markdown = val;
},
Expand All @@ -53,6 +54,7 @@ Object.defineProperty(helpers, 'markdown', {

Object.defineProperty(helpers, 'md', {
configurable: true,
enumerable: true,
set: function(val) {
md = val;
},
Expand Down

0 comments on commit c82d86a

Please sign in to comment.