hexo-renderer-markdown-it 插件 快速配

2018-08-04  本文已影响0人  6ea566508d0d

简介

hexo-renderer-markdown-it 是一款用于 Markdown 解析和渲染的插件。

官方描述的主要特征:

安装

Hexo 主文件目录下:

  1. 卸载 Hexo 默认自带的 Markdown 渲染器
  2. 安装 hexo-renderer-markdown-it 插件
npm un hexo-renderer-marked --save
npm i hexo-renderer-markdown-it --save

配置

Hexo 主配置文件 _config.yml 中添加以下配置内容(官方提供的完整配置,没有特殊需要不用再次修改):

# Markdown-it config
markdown:
  render:
    html: true
    xhtmlOut: false
    breaks: true
    linkify: true
    typographer: true
    quotes: '“”‘’'
  plugins:
    - markdown-it-abbr
    - markdown-it-footnote
    - markdown-it-ins
    - markdown-it-sub
    - markdown-it-sup
  anchors:
    level: 2
    collisionSuffix: 'v'
    permalink: true
    permalinkClass: header-anchor
    permalinkSymbol: ¶

更多参考:
hexo-renderer-markdown-it 插件 详解

上一篇下一篇

猜你喜欢

热点阅读