hexo-renderer-markdown-it
默认集成5个 markdown-it
插件
1 2 3 4 5 6 7 8
| markdown: plugins: - markdown-it-abbr - markdown-it-footnote - markdown-it-ins - markdown-it-sub - markdown-it-sup
|
1 2 3 4 5
| *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium
The HTML specification is maintained by the W3C.
|
- markdown-it-footnote:脚注插件
1 2 3 4 5 6 7
| basic footnote[^1] and another one[^3] and another one[^4]
[^1]: basic footnote content [^3]: paragraph [^4]: footnote content with some [markdown](https://en.wikipedia.org/wiki/Markdown)
|
- markdown-it-ins:插入插件(下划线插件)
1
| ++inserted++ => <ins>inserted</ins>
|
1
| 29^th^ => 29<sup>th</sup>
|
- markdown-it-mark:高亮插件(需要自己下载)
1
| ==marked==` => `inserted
|