0%

Markdown 语法支持测试

Markdown 语法支持的测试博文,有关 Markdown 的语法可参考 Markdown Guide

列表

无序列表

  • 粗体
  • 斜体
  • 粗体和斜体

有序列表

  1. First item
  2. Second item
  3. Third item
  4. Fourth item

引用

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

代码块及代码高亮

bash

1
hexo new "My New Post"

C 语言

1
2
3
4
5
6
#include <stdio.h>

int main(void) {
printf("Hello world\n");
return 0;
}

转义标记

比如 LaTeX

链接

有内容的链接

Markdown Guide

无内容的链接(URL 和 Email)

URL

https://knothhe.github.io/blog

Email

guanglaihe@gmail.com

图片

This is an image

数学公式

行内公式

质能方程:$E = mc^2$

行间公式

黎曼 $\zeta$ 函数

$$
\zeta(s) = \sum_{n=1}^{\infty} \frac{1}{n^s}
$$

源文件

地址