Md Block
Blockquotes are used to highlight important information, quote others' viewpoints, or create visual hierarchy.
### Using Single-Level Blockquotes
Basic syntax:
A Markdown blockquote is created by starting a paragraph with the `>` symbol, followed immediately by a **space**:
> Blockquote > > Learning is not just about technology, but also about dreams
The display result is as follows:
!(#)
Multi-line blockquotes:
> This is the first line of the quote. > This is the second line of the quote. > > This is the second paragraph.
**Simplified syntax:**
Only use `>` on the first line; subsequent lines will automatically be included in the blockquote:
> This is a long quote that spans multiple lines. Only the first line needs the `>` symbol.
!(#)
### Multi-Level Nested Blockquotes
Blockquotes can be nested. One `>` symbol is the outermost level, two `>` symbols are the first level of nesting, and so on:
> Outermost level > > First level of nesting > > > Second level of nesting
The display result is as follows:
!(#)
Practical application example:
> **User Feedback**: This feature is very useful! > > > **Development Team Reply**: Thank you for your feedback. We will continue to optimize. > > > > > **Project Manager Addition**: More improvements are expected in the next version.
!(#)
### Using Lists Inside Blockquotes
Example of using a list inside a blockquote:
> Using a list inside a blockquote > 1. First item > 2. Second item > + First item > + Second item > + Third item
The display result is as follows:
!(#)
### Using Blockquotes Inside Lists
If you want to include a blockquote within a list item, you need to add four spaces of indentation before the `>` symbol.
Example of using a blockquote inside a list:
* First item > > Learning is not just about technology, but also about dreams * Second item
The display result is as follows:
!(#)
* * *
## Other Elements Inside Blockquotes
Blockquotes can contain almost all other Markdown elements.
**Including Headings:**
> ## Important Reminder > > Please read the documentation carefully before proceeding to avoid data loss.
**Including Lists:**
> ### Notes > > 1. Back up important data > 2. Check system compatibility > 3. Prepare a rollback plan > > - Verify in the test environment > - Deploy to the production environment > - Monitor system status
**Including Code:**
> To run this script, please use the following command: > > ```bash > npm install > npm start > ``` > > After execution, you will see the result at `http://localhost:3000`.
**Including Links and Images:**
> 📚 **Recommended Reading** > > For detailed information, please refer to the (https://example.com) > > !(./images/example.png)
### Best Practices for Blockquotes
**Quoting Famous Sayings**
> "In software development, the most expensive mistakes are building the right system the wrong way, or building the wrong system the right way." > > β Barry Boehm, Software Engineering Expert
### Important Information Prompts
**Success Prompt:**
> ✅ **Success** > > Configuration has been saved and applied. The system will apply the new settings upon the next restart.
**Warning Message:**
> ⚠️ **Warning** > > This action is irreversible. Please ensure you have backed up important data.
**Error Message:**
> ❌ **Error** > > Failed to connect to the database. Please check your network connection or contact the system administrator.
**Information Prompt:**
> ℹ️ **Note** > > Account verification is required for first-time use. A verification email has been sent to your inbox.
!(#)
### Blockquotes in Document Structure
**Chapter Summary:**
# Chapter 1: Project Overview > **Key Points of This Chapter** > > - Understand the project background and objectives > - Master core feature characteristics > - Familiarize yourself with the technical architecture design
!(#)
**Version Update Notes:**
## v2.1.0 Update Content > **Major Changes** > > ⚠️ API endpoint paths have been adjusted. Clients using older versions need to update. > > See (./migration-guide.md) for details.
YouTip