🚀阿江的数字花园

搜索⚡

Search IconIcon to open search

Obsidian.ajiang.fun增加评论

⏲上次更新的时间是 Apr 12, 2023

在你的_layouts\note.html下加入这段代码就可以为你的数字花园添加评论

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<body>
  <!-- ... -->
  <div id="waline"></div>
  <script type="module">
    import { init } from 'https://unpkg.com/@waline/client@v2/dist/waline.mjs';

    init({
      el: '#waline',
      serverURL: 'https://ajiangstudy-comment.vercel.app/',
    });
  </script>
</body>