解决Hexo英文引号在网页上显示为中文引号的问题
加 hexo-renderer-marked 插件解决英文引号显示问题
操作步骤
先下载 hexo-renderer-marked 插件
1
$ npm install hexo-renderer-marked --save
在 Hexo 的 _config.yml 文件中添加该插件的参数:
1
2
3
4
5
6
7
8
9
10marked:
gfm: true
pedantic: false
sanitize: false
tables: true
breaks: true
smartLists: true
smartypants: true
modifyAnchors: ''
autolink: true上面参数的含义可以在 https://github.com/hexojs/hexo-renderer-marked 上找到。
将上面参数中 smartypants: true 改为 smartypants: false
再打开页面,就可以看到英文引号正确显示了。