Welcome to my blog!

This is my first post. I’m going to share some basic markdown syntax.

Header 1

1
# Header 1

Header 2

1
## Header 2
  • list 1
  • list 2
1
2
- list 1
- list 2
  1. list 1
  2. list 2
1
2
1. list 1
2. list 2

bold

1
**bold**

italic

1
*italic*

quote

1
> quote

code

1
`code`

multiline code

  • use 3 backticks to start and end a code block
1
2
3
4

def hello():
print("hello world")

1
2
3
4
5
\begin{aligned}
\dot{x} & = \sigma(y-x) \\
\dot{y} & = \rho x - y - xz \\
\dot{z} & = -\beta z + xy
\end{aligned}

x˙=σ(yx)y˙=ρxyxzz˙=βz+xy\begin{aligned} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{aligned}