解决Hexo英文引号在网页上显示为中文引号的问题

加 hexo-renderer-marked 插件解决英文引号显示问题

操作步骤

  1. 先下载 hexo-renderer-marked 插件

    1
    $ npm install hexo-renderer-marked --save
  2. 在 Hexo 的 _config.yml 文件中添加该插件的参数:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    marked:
    gfm: true
    pedantic: false
    sanitize: false
    tables: true
    breaks: true
    smartLists: true
    smartypants: true
    modifyAnchors: ''
    autolink: true

       上面参数的含义可以在 https://github.com/hexojs/hexo-renderer-marked 上找到。

  3. 将上面参数中 smartypants: true 改为 smartypants: false

   再打开页面,就可以看到英文引号正确显示了。


参考链接

  1. Hexo使用记录
  2. hexo-renderer-marked