test
#TODO
Lorem ipsum dolor sit amet: p(x|y) = \frac{p(y|x)p(x)}{p(y)}
\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \\
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \\
\end{vmatrix}
前面需要空4个空格
这样才是对的
这是才是对的
这是hi什么
这是什么鬼啊
你好
你好啊
A setext style header
A hash style header
int main(int argc, char** argv) { if (argc != 2) { return -1; } return 0; }
Markdown 源文件
- Markdown Preview Enhanced: Toggle
ctrl-shift-m
开/关 Markdown 文件预览。 - Markdown Preview Enhanced: Open Mathjax Config
打开MathJax
设置文件。 - 粗体
开关
按键
Ctrl+Alt+Del
- tasklist
The HTML specification
is maintained by the W3C.
Phasellus posuere in sem ut cursus
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
- Apple :
- Pomaceous fruit of plants of the genus Malus in
the family Rosaceae. - Orange
- The fruit of an evergreen tree of the genus Citrus.
#!/bin/bash STR="Hello World!" echo $STR
#include int main(void) { printf("hello, world\n"); }
#include <iostream> int main() { std::cout << "Hello, world!\n"; return 0; }
using System; class Program { static void Main(string[] args) { Console.WriteLine("Hello, world!"); } }
Open styled details
Nested details!
And more content again.
2 3 4 5 | """Some file.""" import foo.bar import boo.baz import foo.bar.baz |
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
这是干嘛
Flow Chart Example
```flow st=>start: Start:>http://www.google.com[blank] e=>end:>http://www.google.com op1=>operation: My Operation sub1=>subroutine: My Subroutine cond=>condition: Yes or No?:>http://www.google.com io=>inputoutput: catch something... st->op1->cond cond(yes)->io->e cond(no)->sub1(right)->op1 ```
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
Sequence Diagram Example
```sequence Title: Here is a title A->B: Normal line B-->C: Dashed line C->>D: Open arrow D-->>A: Dashed open arrow ```
Title: Here is a title
A->B: Normal line
B-->C: Dashed line
C->>D: Open arrow
D-->>A: Dashed open arrow