💡 参考文章见Ref,感谢提供思路!
🗺️当前这篇博文地址:https://myoontyee.github.io/article/ccd6f7fe.html
⚠️警告:博客文章禁止一切形式的非授权非法转载!
⚠️Attention: All forms of unauthorized illegal reposts are prohibited !

创建时间:2022年3月30日20:06:36
最新更新:2022年3月30日20:06:40


核心思路

  • 找到定义的代码,#改成别的

改标签

  • 用代码编辑器(如Visual Stuidio Code)打开themes\Chic\layout\_page\post.ejs,找到如下代码
1
2

<a href="<%- url_for(item.path) %>"># <%- item.name %></a>
  • 把#改成别的,如🏷️
1
2

<a href="<%- url_for(item.path) %>">🏷️<%- item.name %></a>
  • 得到如下图效果

Ref