You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
200 B
JavaScript

// 入口
$(() => {
// 悬浮框
$('[data-toggle="tooltip"]').tooltip();
// 代码高亮
document.querySelectorAll("pre code").forEach((block) => {
hljs.highlightBlock(block);
});
});