Hello World
Hello World
NoahWelcome 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.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment
隐藏内容的标题
隐藏文字隐藏文字隐藏文字。
支持 markdown 语法
支持标题
支持简单文本编辑
- 支持 粗体、斜体
支持列表
- 列表 1
- 列表 2
支持图片
- md 插入图片语法:
- html 插入图片语法:
支持代码块
- 行内代码
markdown
cpp
#include
#include
struct A {
A() { std::cout << “1”; }
A(int) { std::cout << “2”; }
A(std::initializer_list
};
int main(int argc, char *argv[]) {
A a1;
A a2{};
A a3{ 1 };
A a4{ 1, 2 };
}
支持表格
| 文字 | 文字 |
|---|---|
| 文字 | 文字 |
支持公式
- 行内公式$Y=aX^2+bX+c$
$$
Y=aX^2+bX+c
$$






