Baizhi Education-Basic Instructions for Markdown

Basic instructions for use of Markdown

Markdown is a markup language in plain text format. Through a simple markup syntax, it can make ordinary text content have a certain format.

1. Title

Add #space before the text you want to set as the title.

One # is the first-level heading, two #s are the second-level headings, and so on...supports sixth-level headings.

1554866426850

The effect is as follows:

This is the first level heading

This is a secondary heading

This is the third level heading

This is the fourth level heading

This is a five-level heading
This is the sixth level heading

Two, font settings

Code:

*斜体* 或是 _斜体_
**粗体**
***加粗斜体***
<u>下划线</u>
~~删除线~~
***     三个或是及以上个*或是_,代表分割线

Demonstration effect:

Italic or italic
bold
bold italic
underline

Strikethrough


Three, list

  • No list required

    Syntax: use-+ * without a list, either

    - 列表内容分
    + 列表内容
    * 列表内容
    注意:- + * 跟内容之间都要有一个空格
    
  • Ordered list

    Syntax: Array plus points

    1. 列表内容
    2. 列表内容
    3. 列表内容
    注意: 序号和内容之间有空格
    
  • List embedding

    Application: Write a Tab key or three spaces between the upper level and the next level

    1. Ordered list
      • Unordered list

Four, form

语法: 
    |列1|列2|列3|
    |--|--|--|

Example:

Name Grades gender

Five, insert the code

单行代码语法: `String s = "hello";、
多行代码语法: ```代码

One-line example:

String s= "hello"

Multi-line code example:

public class Test{
    public static void main(String[] args){
        System.out.println("hello java");
    }
}

Six, insert a picture

Drag and drop the picture directly to the editing interface.

Note: The shortcut key is to view the format in the upper left corner of the compiler.

Seven, special symbols

1554881971855

8. Commonly used shortcut keys

撤销:Ctrl/Command + Z
重做:Ctrl/Command + Y
加粗:Ctrl/Command + B
斜体:Ctrl/Command + I
标题:Ctrl/Command + Shift + H
无序列表:Ctrl/Command + Shift + U
有序列表:Ctrl/Command + Shift + O
检查列表:Ctrl/Command + Shift + C
插入代码:Ctrl/Command + Shift + K
插入链接:Ctrl/Command + Shift + L
插入图片:Ctrl/Command + Shift + G

Guess you like

Origin blog.csdn.net/Java_lover_zpark/article/details/89470789