2018-04-23 19:11:24 +02:00
|
|
|
import 'highlight.js/styles/atom-one-light.css';
|
2022-01-05 14:23:08 +01:00
|
|
|
import hljs from 'highlight.js';
|
2018-04-23 19:11:24 +02:00
|
|
|
|
|
|
|
window.addEventListener('load', () => {
|
2022-01-05 14:23:08 +01:00
|
|
|
document.querySelectorAll('pre').forEach((element) => {
|
|
|
|
hljs.highlightElement(element);
|
2018-04-23 19:11:24 +02:00
|
|
|
});
|
|
|
|
});
|