CMS that supports Markdown editors, AnQi CMS is one of them
Feature Introduction

CMS that supports Markdown editors, AnQi CMS is one of them

What CMS (Content Management Systems) support Markdown editors?I don't know about others, but Anqi CMS is one of them.Use the Markdown editor The default safe CMS uses a rich text editor, so we need to go to the settings to enable the Markdown editor to use the Markdown editor.After enabling it, we can happily use the Markdown editor on the document publishing interface.Markdown editor description of the Markdown used by AnQiCMS

Feature Introduction

What CMS (Content Management System) supports Markdown editors? I don't know the others, but Anqi CMS is one of them.

Use Markdown Editor

The default AnQi CMS uses a rich text editor, so we need to go to the settings to enable Markdown editor to use Markdown editor.

After turning it on, we can happily use the Markdown editor on the document publishing interface.

Markdown editor instructions

The Markdown editor used by AnQiCMS is bytemd, an open-source Markdown editor from ByteDance.

ByteMD is a Markdown editor component built with Svelte. It could also be used in other libraries/frameworks such as React, Vue, and Angular.

Markdown supported syntax includes:

  • First-level title# 标题
  • Second-level title## 标题
  • Third-level title### 标题
  • Bold**粗体文本**
  • Italic*斜体文本*
  • Citation> 引用文本
  • links[链接描述](url)
  • Image![alt](url "图片描述")
  • code代码
  • Code block```编程语言↵
  • Unordered List- 项目
  • Ordered List1. 项目
  • Separator---
  • Strikethrough~~text~~
  • Task list- [ ] todo
  • Inline formula$formula$
  • Block formula$$↵formula↵$$
  • Mermaid diagrams```mermaid

Related functions

How to display the current time in AnqiCMS template

How to display the current time in AnqiCMS template

To display the current time in AnQi CMS template, you can use the now tag.The `now` tag allows you to format and display the current time according to the Go language's time formatting string.‌ Use the now tag in the template,‌ you can call the now tag in the following way:‌ {% now "2006-01-02 15:04:05" %} This will display the current time,‌ in the format of Year-Month-Day Hour:Minute:Second .Go Language's Time Formatting String Go

How to do sensitive word filtering on a website, ideas and practices for sensitive word filtering

How to do sensitive word filtering on a website, ideas and practices for sensitive word filtering

Sensitivity word filtering is a technology implemented in websites, applications, or platforms to carry out content review, used to prevent users from posting content that contains inappropriate, illegal, or content that does not comply with policies.We often need to worry about certain users' posts containing sensitive words during the actual operation of our website, these words often lead to our website being reported by users, even being banned by server operators, investigated by relevant departments, and fined.To prevent this situation from happening, we need to filter sensitive words.Implementation of sensitive word filtering involves multiple steps, including technical implementation and strategy formulation

The logic of implementing automated anchor text on the website

The logic of implementing automated anchor text on the website

Anchor text, which is the text part of a hyperlink, plays a crucial role on a webpage.By clicking on the anchor text, users can conveniently navigate between web pages, thereby greatly enhancing the user experience.At the same time, anchor text also plays an indispensable role in the field of Search Engine Optimization (SEO).Search engines analyze the content of anchor text to judge the theme and relevance of the linked page, thereby affecting the page's ranking.Therefore, setting anchor text reasonably is of great importance for improving the SEO effect of a website.