Running 1 days
Running 1 days
Feb 20, 2026
This post is a compact cheat sheet for writing Markdown efficiently.
Reference source: https://note.motues.top/docs/Markdown/use
Use # to ###### for heading levels 1 to 6.
# Heading 1
## Heading 2
### Heading 3
Separate paragraphs with a blank line. Add two trailing spaces for a line break.
This is paragraph one.
This is paragraph two.
This is a new line in the same paragraph.
**bold**
*italic*
***bold italic***
~~strikethrough~~
> A blockquote
>> A nested blockquote
Inline code:
Use `console.log` to print logs.
Code block:
```ts
const name = "Markdown";
console.log(name);
## Lists
### Unordered
```markdown
- Item one
- Item two
- Item three
1. Item one
2. Item two
3. Item three
- [x] Done task
- [ ] Todo task
[Visit site](https://example.com)

| Name | Type | Notes |
| --- | --- | --- |
| Markdown | Markup | Lightweight and readable |
Alignment:
| Left | Center | Right |
| :--- | :---: | ---: |
| A | B | C |
Inline:
Pythagorean theorem: $a^2+b^2=c^2$
Block:
$$
\int_a^b f(x)\,dx
$$
:::tip
This is a tip card.
:::
---
If you’re writing in the admin editor, you can use the built-in Markdown quick insert menu to generate these snippets quickly.