Hello World
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. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment 测试一些常见的显示其他语言代码块123456public void rollbackStock(Long ...
KaTeX 测试
KaTeX 渲染测试行内公式:E=mc2E = mc^2E=mc2。 块级公式: ∫01x2 dx=13\int_0^1 x^2\,dx = \frac{1}{3}∫01x2dx=31 对齐公式: a2+b2=c2x=−b±b2−4ac2a\begin{aligned} a^2 + b^2 &= c^2 \\ x &= \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \end{aligned}a2+b2x=c2=2a−b±b2−4ac
Mermaid 测试
Mermaid 渲染测试下面是一张流程图: graph TD A[开始] --> B{判断条件} B -->|是| C[执行 A] B -->|否| D[执行 B] C --> E[结束] D --> E