tufu9441 / maupassant-hexo

A simple Hexo theme forked from icylogic.
https://www.haomwei.com
MIT License
2.61k stars 670 forks source link

fix: optimize the display of tags in the article #549

Closed cirry closed 1 year ago

cirry commented 1 year ago

修复 #543 ,在之前的代码中,使用page.tags.toArray()来遍历文章中的标签,没有对标签进行任何处理。 而在网址中是不允许出现空格的,所以点击链接会跳转失败。 现在修改为使用Hexo提供的辅助函数list_tags()来遍历文章中的标签,此方法会对空格等一些特殊符号处理为'-'替代。 修改后的a链接展示跳转均无问题。

image