web123456

Summary of Markdown usage tips—font, color, font size, background, first line indentation, etc.

Font, font size and color:

Markdown is a markup language that can be written in ordinary text editors. Through HTML-like markup syntax, it can make ordinary text content have a certain format. However, it does not support modifying fonts, font sizes and colors!
CSDN-markdown editor is its derivative version, which extends the functions of Markdown (such as tables, footnotes, embedded HTML, etc.)! Yes, it is to embed HTML. The next function to be discussed needs to be implemented using the embedded HTML method.
Fonts, font sizes and colorsEdit the following code

<font face="bold">I am bold</font>
 <font face="Microsoft Yahei">I am Microsoft Yahei</font>
 <font face="STCAIYUN">I am Huawen Caiyun</font>
 <font color=#0099ff size=7 face="bold">color=#0099ff size=72 face="bold"</font>
 <font color=#00ffff size=72>color=#00ffff</font>
 <font color=gray size=72>color=gray</font>

 Size: Specify the size of the text.  Possible values: Numbers from 1 to 7.  The default browser value is 3

For specific color classification and markings, please refer to:Various colors