Skip to content

Instantly share code, notes, and snippets.

@Tallies
Created June 3, 2015 13:42
Show Gist options
  • Save Tallies/2b5001c5cccabe35a411 to your computer and use it in GitHub Desktop.
Save Tallies/2b5001c5cccabe35a411 to your computer and use it in GitHub Desktop.
highlight: function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
},
//React lifecycle methods
componentDidUpdate : function() {
this.highlight()
},
componentDidMount : function() {
this.highlight();
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment