markdown common grammar Collection

1. Text Styles

* Emphasized text * _ _ emphasize text

** bold text ** __ __ bold text

==Tagged Text==

~~ delete text ~~

> Quoted text

H ~ 2 ~ O IS is a liquid.

2 ^ 10 ^ calculation result is 1024.


2. Title

Class # 1 title

Level ## 2 heading

### Level 3 title

#### four title

##### five title
###### six title

(Note that there is a space after the #)


3. List

  • - Project
    • * Project
      • + Project
  1. Item 1
  2. Item 2
  3. Item 3

- [] Scheduled Tasks
- [x] to complete the task


3. Code sheet

```python
print(‘hello world’)
```

`Var foo = 'bar'; ``

`That is the key in the keyboard esc below


4. Comment

Markdown text is converted to HTML.

* [HTML]: HTML


4. Shortcuts

Markdown hot key
Undo Ctrl /⌘+Z
Redo Ctrl /⌘+Y
Bold Ctrl /⌘+B
Italic Ctrl /⌘+I
title Ctrl /⌘+Shift +H
Ordered list Ctrl /⌘+Shift +U
Unordered list Ctrl /⌘+Shift +O
To Do List Ctrl /⌘+Shift +C
Insert code Ctrl /⌘+Shift +K
Insert link Ctrl /⌘+Shift +L
Insert Picture Ctrl /⌘+Shift +G
Seek Ctrl /⌘+F
replace Ctrl /⌘+G

5. Form

Here Insert Picture Description

project Value
computer $1600
Cellular phone $12
catheter $1
Column 1 Column 2
centered text is centered right-aligned text right home
Published 10 original articles · won praise 14 · views 3703

Guess you like

Origin blog.csdn.net/yuaneuro/article/details/104803597