1
1
mirror of https://github.com/go-gitea/gitea synced 2024-09-14 15:56:04 +00:00
gitea/web_src/js/features/highlight.js

13 lines
366 B
JavaScript
Raw Normal View History

export default async function initHighlight() {
if (!window.config || !window.config.HighlightJS) return;
const hljs = await import(/* webpackChunkName: "highlight" */'highlight.js');
const nodes = [].slice.call(document.querySelectorAll('pre code') || []);
for (let i = 0; i < nodes.length; i++) {
hljs.highlightBlock(nodes[i]);
}
return hljs;
}