mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-08 06:51:43 +08:00
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
class CodeHighlighter {
|
|
|
|
constructor(elem) {
|
|
const codeBlocks = elem.querySelectorAll('pre');
|
|
if (codeBlocks.length > 0) {
|
|
window.importVersioned('code').then(Code => {
|
|
Code.highlightWithin(elem);
|
|
});
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
export default CodeHighlighter; |