Skip to content
Go back

Markdown 语法支持测试

 at  Updated: 1 min read
Edit

有关 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

hexo new "My New Post"

C 语言

#include <stdio.h>

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

转义标记

比如 LaTeX

链接

有内容的链接

Markdown Guide

无内容的链接(URL 和 Email)

URL

https://blog.guanglai.me/blog

Email

[email protected]

图片

This is an image
This is an image

数学公式

行内公式

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

行间公式

黎曼 ζ\zeta 函数

ζ(s)=n=11ns \zeta(s) = \sum_{n=1}^{\infty} \frac{1}{n^s}

Edit
文章标题:Markdown 语法支持测试
文章链接: https://blog.guanglai.me/posts/markdown-syntax-support-test/

商业转载请联系站长获得授权,非商业转载请注明本文出处及文章链接。您可以自由地在任何媒体以任何形式复制和分发作品,也可以修改和创作,但分发衍生作品时必须采用相同的许可协议。

本文采用 CC BY-NC-SA 4.0 进行许可。


Previous Post
LaTeX Beamer 使用