Skip to content

Commit

Permalink
Make 'initHighlighting' functions callable
Browse files Browse the repository at this point in the history
  • Loading branch information
djsegal committed Aug 23, 2016
1 parent d1f0799 commit 3bb2a7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ module.exports = {
'default',
'highlight',
'highlightAuto',
'highlightBlock'
'highlightBlock',
'initHighlighting',
'initHighlightingOnLoad'
]
}
});
Expand Down
4 changes: 3 additions & 1 deletion vendor/highlight.js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9856,7 +9856,9 @@ define('highlight.js', [], function(){
default: highlight,
highlight: highlight.highlight,
highlightAuto: highlight.highlightAuto,
highlightBlock: highlight.highlightBlock
highlightBlock: highlight.highlightBlock,
initHighlighting: highlight.initHighlighting,
initHighlightingOnLoad: highlight.initHighlightingOnLoad,
};
});

Expand Down

0 comments on commit 3bb2a7f

Please sign in to comment.