1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-26 18:21:02 +00:00

Move material to assets root

This commit is contained in:
Yassine Guedidi 2025-01-19 19:47:24 +01:00
parent 251de194c5
commit 22c9497cd7
29 changed files with 2 additions and 2 deletions

8
assets/js/highlight.js Normal file
View file

@ -0,0 +1,8 @@
import 'highlight.js/styles/atom-one-light.css';
import hljs from 'highlight.js';
window.addEventListener('load', () => {
document.querySelectorAll('pre').forEach((element) => {
hljs.highlightElement(element);
});
});