This commit is contained in:
dmxiaoshen
2023-04-20 14:23:12 +08:00
commit 103a72c20d
31 changed files with 1310 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// 入口
$(() => {
// 悬浮框
$('[data-toggle="tooltip"]').tooltip();
// 代码高亮
document.querySelectorAll("pre code").forEach((block) => {
hljs.highlightBlock(block);
});
});