新环境总担心旧博文的插件会出问题,这个页面里的插件如果没问题的话,其它的也应该没问题。
安装方法
1
| npm i hexo-filter-flowchart --save
|
参数配置
在 _config.yml
中。
1 2 3
| flowchart: raphael: //cdnjs.cloudflare.com/ajax/libs/raphael/2.3.0/raphael.min.js flowchart: //flowchart.js.org/flowchart-latest.js
|
效果展示
图 1 程序流程图
安装方法
1
| npm i hexo-renderer-markdown-it --save
|
参数配置
在 _config.yml
中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| 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: "" permalink: false permalinkClass: header-anchor permalinkSide: "right" permalinkSymbol: ¶ case: 1 separator: "-"
|
效果展示
sub
H2O
sup
x2y2
这是一段正文
ins
inserted
安装方法
效果展示
安装方法
参数配置
在 _config.yml
中。
1 2 3 4 5 6 7 8 9 10 11
| math: engine: "mathjax" mathjax: src: custom_mathjax_source config: katex: css: custom_css_source js: custom_js_source config:
|
效果展示
安装方法
效果展示
markdown 渲染
有序列表
无序列表
- 1
- 1.1
- 1.1.1
- 2
- 3
- 4
Gitalking ...