Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/resources/js/components/
Upload File :
Current File : /var/www/html/bookstack/resources/js/components/code-highlighter.js

class CodeHighlighter {

    constructor(elem) {
        const codeBlocks = elem.querySelectorAll('pre');
        if (codeBlocks.length > 0) {
            window.importVersioned('code').then(Code => {
               Code.highlightWithin(elem);
            });
        }
    }

}

export default CodeHighlighter;