写文章的第一步是啥?当然是学写字~
本着善其事利其器的原则,替换掉了默认的渲染器,采用了markdown-it
.
用作者的话说它扩展性比较强,功能更丰富,传说处理速度也比较快~
The killer feature of
markdown-it
is very effective support of syntax plugins.
本篇作为Markdown(非标准)的语法参考手册及检测后续样式修改的基准测试页
项目地址
https://github.com/hexojs/hexo-renderer-markdown-it
语法
结构
标题
1 | # Title of h1 |
Title of h1
Title of h2
Title of h3
Title of h4
Title of h5
Title of h6
水平线
1 | ___ |
资源
图片
1 | ![Markdown Logo](http://kirkstrobeck.github.io/whatismarkdown.com/img/markdown.png) |
链接
1 | [EMOJI CHEAT SHEET](http://www.emoji-cheat-sheet.com/ "Emoji!") |
文字效果
粗体
1 | **bold** |
bold
斜体
1 | *italic* |
italic
删除线
1 | ~~Strikethrough~~ |
Strikethrough
块
引用块
1 | > Blockquotes |
Blockquotes
Nest
行内代码
1 | There is a `code` inline. |
There is a code
inline.
代码块
1 | ```javascript |
1 | function foo(bar) { |
表
无序列表
1 | * Unordered List |
- Unordered List
- Level 1
- Level 2
- Level 3
- Level 2
有序列表
1 | 1. Ordered List |
- Ordered List
- Item
- Item
表格
1 | | |col1|col2 |
col1 | col2 | |
---|---|---|
row1 | a | b |
row2 | c | d |
特殊符
Emoji
1 | :grinning: :kissing_heart: :flushed: |
印刷字符
1 | (c) (C) (r) (R) (tm) (TM) (p) (P) +- |
© © ® ® ™ ™ § § ±
上下标
1 | 21^th^ |
21th
H2O
缩写
1 | GNU is a famous organization |
GNU is a famous organization
尾注
1 | Footnote 1 link[^first]. |
Footnote 1 link[1].
Footnote 2 link[2].
Inline footnote[3] definition.
Duplicated footnote reference[2].
一分也是爱~
版权声明
This site by Linest is licensed under a Creative Commons BY-NC-ND 4.0 International License.
由Linest创作并维护的博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文永久链接:http://linest.github.io/2016/04/05/hexo-ext-markdown-it/