Skip to content

Commit

Permalink
Update html_header.html
Browse files Browse the repository at this point in the history
  • Loading branch information
spinkney committed Jan 24, 2022
1 parent 317a380 commit dc0bd60
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pretty/css/html_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@
<script>
$(function() {
$(".fragment").each(function(i,node) {
$(node).removeClass("fragment");
hljs.highlightElement(node);
var $node = $(node);
$node.html("<pre><code class='stan'>" +
$node.text()+"</code></pre>");
hljs.highlightAll(node);
});
});
</script>
Expand Down

0 comments on commit dc0bd60

Please sign in to comment.