Merge pull request #240 from umatare5/fix/replace_be_deprecated_code

Replace highlightBlock with highlightElement
This commit is contained in:
Henk Verlinde
2021-04-19 12:14:07 +02:00
committed by GitHub

View File

@ -19,6 +19,6 @@ hljs.registerLanguage('md', markdown);
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('pre code').forEach((block) => {
hljs.highlightBlock(block);
hljs.highlightElement(block);
});
});