Markdown is a lightweight markup language for writing formatted text using a plain-text editor. It is widely used for documentation and note-taking.
It’s extremely easy: markdown is designed to be readable even before you learn it.
Here we only give a minimal crash course.
# Big title
## Section
### Subsection
#### Subsubsection
##### Even smallerJust write text.
Blank lines separate paragraphs.Just write text.
Blank lines separate paragraphs.
*italic* or _italic_
**bold** or __bold__
`inline code`italic or italic
bold or bold
inline code
- item one
- item two
Texts inside a list item (indented!)
- nested itemitem one
item two
Texts inside a list item (indented!)
1. first
2. second
3. thirdfirst
second
third
[link text](https://example.com)Inline math: $a^2 + b^2 = c^2$
Block math:
$$\int_0^1 x^2 \, dx$$Inline math: \(a^2 + b^2 = c^2\)
Block math: \[\int_0^1 x^2 \, dx\]
If you prefer LaTeX syntax for everything, use a .tex note instead.