Markdown Syntax Test
This document is used to test and demonstrate Markdown syntax supported by this project.
1. Headings
1.1 Different Levels
Level 1 Heading
Level 2 Heading
Level 3 Heading
Level 4 Heading
Level 5 Heading
Level 6 Heading
2. Text Formatting
2.1 Emphasis
Bold text
Italic text
Bold and italic text
Strikethrough text
2.2 Inline Code
Use inline code to mark code snippets.
2.3 Escape Characters
*Not italic* [Not a link]
3. Lists
3.1 Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
3.2 Ordered List
- First item
- Second item
- Subitem 2.1
- Subitem 2.2
- Third item
3.3 Task List
- Completed task
- Uncompleted task
- Another completed task
4. Links and Images
4.1 Links
4.2 Image with Title
![]()
4.3 Image with Link
5. Blockquotes
5.1 Normal Blockquote
This is a blockquote text. It can span multiple lines.
5.2 Nested Blockquote
First level quote
Second level quote
Third level quote
5.3 Blockquote with Elements
Blockquotes can contain bold text,
code, and links.
6. Code Blocks
6.1 Basic Code Block
6.2 Code Block with Language
6.3 Code Block Title
6.4 Line Highlighting
7. Tables
7.1 Basic Table
7.2 Alignment
7.3 Complex Table
8. Horizontal Rules
Horizontal rules are used to create visual separation in documents, you can use three different character combinations:
8.1 Short Line
Use three or more ---:
8.2 Asterisks
Use three or more ***:
8.3 Underscores
Use three or more ___:
Note: The three writing styles above render the same as a horizontal line, but the source code is different.
9. Footnotes
This is a paragraph with a footnote1.
Footnotes can be placed anywhere in the document2.
10. GitHub Markdown Alerts
10.1 Note
Useful information that users should know, but is not mandatory.
10.2 Tip
Helpful suggestions for optimizing or simplifying operations.
10.3 Important
[!IMPORTANT] Critical information that users must pay attention to.
10.4 Warning
Warning information, indicating potential issues or risks.
10.5 Caution
Dangerous operations that may cause data loss or security risks.
11. Emoji
😀 😃 😄 😁 😆 🤣 😂
👍 👎 👏 👋 🙏 💪
💻 🖥️ 💾 💿 📱
12. Mathematical Formulas (if supported)
Inline formula: $E = mc^2$
Block formula:
$$ \frac{n!}{k!(n-k)!} = \binom{n}{k} $$
13. Special Characters
© ® ™ € £ ¥
♥ ♠ ♦ ♣
14. Indentation and Spaces
15. Performance Testing
15.1 Large Text Test
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
15.2 Large Code Test
Summary
This document covers the following syntax types:
- ✅ Headings (levels 1-6)
- ✅ Text formatting (bold, italic, strikethrough, etc.)
- ✅ Lists (unordered, ordered, task lists)
- ✅ Links and images
- ✅ Blockquotes (support nesting)
- ✅ Code blocks (with syntax highlighting)
- ✅ Tables (with alignment)
- ✅ Horizontal rules
- ✅ Footnotes
- ✅ GitHub Markdown Alerts
- ✅ Emoji
- ✅ Mathematical formulas (if supported)
- ✅ Special characters
- ✅ Indentation and spaces
- ✅ Performance testing
If you need to add more test cases, please edit this document.