$('.helper .sample-code').each( function() {
      var $this = $( this );
      var code = $this.html().replace( /^\r\n|\r|\n/, '' ).replace( /(&)/g, '&' );
      var highlightedCode = hljs.highlight( 'javascript', code, true );