mirror of
https://github.com/wahyd4/crawl4ai.git
synced 2026-08-21 11:25:51 +10:00
6 lines
172 B
JavaScript
6 lines
172 B
JavaScript
document.addEventListener('DOMContentLoaded', (event) => {
|
|
document.querySelectorAll('pre code').forEach((block) => {
|
|
hljs.highlightBlock(block);
|
|
});
|
|
});
|
|
|