As an experienced Anqi CMS website operation personnel, I am well aware that content quality and readability are crucial for attracting and retaining users.In the process of content creation and editing, being proficient in using various formatting features of the Markdown editor can greatly enhance the clarity of content structure and the reading experience of users.Among them, block quotes, ordered lists, and unordered lists are indispensable elements for constructing content that is clearly structured and logically clear.
The AnQi CMS built-in Markdown editor supports standard Markdown syntax, allowing content creators to organize articles in a concise and efficient manner.Below, I will give a detailed introduction on how to conveniently insert and use quote blocks, ordered lists, and unordered lists in Markdown editors.
Insert a quote block in the Markdown editor
A block quote is a common format used in content creation, usually to highlight the words of others, book chapters, regulations, or important points in articles.By formatting specific text as a block quote, it can clearly distinguish the original content from the author's comments or arguments, thereby enhancing the rigor and credibility of the article.
Inserting a quote block in the AnQi CMS Markdown editor is very intuitive. You just need to add a greater than sign in front of the text line that needs to be quoted.>Next, enter a space, and then you can start writing your reference content. If the reference content contains multiple lines, you can add a curly brace at the beginning of each line.>or only at the beginning of the first line>The subsequent lines will be automatically recognized as part of the referenced content, as long as there are no blank lines between them.To make the blockquote more structured, Markdown also supports nested quotes.You can add multiple>>to create multi-level references, each greater-than sign represents a nested level.
For example, if you want to quote a description of the advantages of Anqi CMS, you can enter it like this in the editor:
> AnQiCMS 是一个基于 Go 语言开发的企业级内容管理系统,致力于提供高效、可定制、易扩展的内容管理解决方案。
>
>> 项目定位于服务中小企业、自媒体运营者和多站点管理需求的用户,通过一套简洁高效的系统架构,支持多样化的内容展示和管理需求。
This Markdown code will be displayed on your web page after publication as a style with clear visual distinction, helping readers quickly identify the quoted content and its level.
Insert an ordered list in the Markdown editor
An ordered list is the ideal way to display steps, rankings, or any information that needs to be presented in a specific order.It clearly indicates the sequence of items through numbers, helping the reader understand complex processes or structured data.In marketing content, tutorial articles, or product descriptions, the use of ordered lists can significantly enhance the efficiency of information delivery.
Creating an ordered list in the Anqi CMS Markdown editor is very simple. You just need to type a number at the beginning of the list item, followed by an English period.., followed by a space, then enter the specific content of the list item.One of the conveniences of Markdown is that it automatically handles list numbering.This means that, regardless of the starting number you enter or whether the numbers in the subsequent list items are consecutive, Markdown will start from1.Start and automatically increment to generate the correct list numbering. Of course, to maintain the cleanliness and readability of the source file, it is recommended that you maintain the continuity of numbering when editing, for example1.,2.,3..
Here is an example of creating an ordered list:
1. 安企CMS具有多站点管理功能,统一管理不同内容站点。
2. 支持灵活的内容模型,允许用户自定义内容结构。
3. 提供多语言支持,满足全球化的内容推广需求。
When you need to create a sublist, you can achieve this by adding indentation before the sublist items. Usually, two to four spaces or one tab is sufficient.
Insert an unordered list in the Markdown editor
An unordered list is used to display a set of items without a specific order, such as feature list, advantages listed, or a collection of related concepts.It uses uniform marking symbols (such as dots, squares, or dashes) to guide readers' attention to each individual item while maintaining the overall content's neatness and readability.
In AnQi CMS's Markdown editor, inserting an unordered list is also very convenient. You can use asterisks at the beginning of list items.*Plus sign+Or a hyphen-Use any symbol, followed by a space, then enter the item content.These three symbols have the same effect in Markdown and will all generate unordered list items.In order to maintain consistency, it is recommended that you choose and consistently use one symbol to create an unordered list in the same article.
This is an example of creating an unordered list:
* 高性能架构,基于Go语言实现高并发。
* 模块化设计,支持独立升级和扩展。
* 灵活的权限控制机制,保障内容安全。
Similar to ordered lists, unordered lists also support nesting. You can create multi-level unordered lists by adding indentation (usually two to four spaces or a tab) before sub-list items, thereby building more complex list structures.
By proficiently using these Markdown formatting features, you can not only write and edit content more efficiently, but also provide your readers with a clear, reader-friendly article experience, thereby enhancing the appeal and user satisfaction of the content.
Frequently Asked Questions (FAQ)
Q1: How should you check if the layout is incorrect after inserting a blockquote and list in a Markdown editor?
A1:If you insert a blockquote or list in the Markdown editor and find that the formatting is incorrect, first check if your Markdown syntax is correct. For blockquotes, make sure each>Symbols are followed by a space; for lists, please confirm numbers, dots, or symbols (such as*/-A space also follows the closing parenthesis.Sometimes, an editor may have auxiliary buttons to help you insert these formats, using these buttons can reduce the grammatical errors that may be caused by manual input.
Q2: Can I mix ordered and unordered lists in a list?
A2:Yes, Markdown syntax allows you to mix ordered and unordered lists in a list.You can create nested structures with proper indentation, where one list item can contain another list of a different type.For example, you can insert an unordered list to enumerate multiple options under a certain step in an ordered list.The key is to maintain clear and consistent indentation so that the Markdown parser can correctly identify the hierarchy of the list.
Q3: Does the Anqi CMS Markdown editor support other common formats in addition to blockquotes and lists?
A3:Yes, the Anqi CMS Markdown editor is feature-rich, supporting many common Markdown formats in addition to block quotes, ordered lists, and unordered lists, such as: headings (by using #Symbols, bold and italic (passing)**or*Symbols, code block (passing)`or```Symbols, images and links (via “), tables, and separators, etc.In addition, according to the document introduction, it also supports the display of mathematical formulas and flowcharts. These advanced features usually require specific plugins or configurations to render normally.You can check the Anqi CMS content editing related help documents to learn more about the full list of features and usage methods.