Skip to content

Instantly share code, notes, and snippets.

@crvdgc
crvdgc / highlight.html
Created May 6, 2018 08:22
highlightjs add language class to all code blocks
<!-- if you are using sublime, uncomment to get a snippet
<snippet>
<content><![CDATA[
-->
<link rel="stylesheet" href="PATH_TO_YOUR_CSS\highlight\styles\github.css">
<script src=PATH_TO_YOUR_JS\highlight\highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();
let addLangClass = function () {
document.getElementByTagName("code").classList.add("${1:language}");
}