Got it! Below is a code block that includes all Markdown syntax. You can directly copy it into an editor to view:
Markdown Lesson
1. Headings
Second-Level Heading
Third-Level Heading
Fourth-Level Heading
Fifth-Level Heading
Sixth-Level Heading
3. Emphasis
ItalicItalic
BoldBold
Bold ItalicBold Italic
4. Lists
Unordered List
- Item 1
- Item 2
- Subitem 1
- Subitem 2
Ordered List
- First item
- Second item
- Subitem 1
- Subitem 2
5. Links
6. Images

7. Code
Inline Code
This is an example of inline code.
Code Block
sample.ts
const msg="Hello, World!"
console.log(msg)
// Using 'typeof' to infer types
const person = { name: "Alice", age: 30 };
type PersonType = typeof person; // { name: string; age: number }
8. Blockquotes
This is a blockquote.
This is the second line of the blockquote.
9. Horizontal Rules
10. Tables
| Column 1 | Column 2 |
|---|---|
| Content 1 | Content 2 |
| Content 3 | Content 4 |
| a | b | c | d |
|---|
11. Task List
- Completed Task
- Incomplete Task
- to do
- done
12. Formulas
$$ E = mc^2 $$
Copy the above content into a Markdown editor, and you'll be able to view and test various Markdown syntaxes.