01 Typora use

The basic syntax of Markdown

1. Title

Supports up to six heading rapid editing, you can quickly access the content by title catalog:

# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

Title effects:

Catalog effect:

2. Bold

Text (** ...... **) within a pair of double asterisk will be bold:

**加粗示范文本**

effect:

Bold model text

3. italic

(A pair of single asterisk ...... text inside) will become italics:

*斜体示范文本*

effect:

Model text in italics

4. Support front-end code

<span style='color:red'>红</span>

effect:

red

5. Insert Picture

Use ![]()format, fill in the local image path in parentheses, or online image link:

![](https://images.cnblogs.com/cnblogs_com/liveact/1535740/o_出师表.png)

Insert Picture Effect:

6. Insert link

Insert link address directly in angle brackets can:

<https://www.cnblogs.com/liveact/>

Insert link effect:

https://www.cnblogs.com/liveact/

7. Insert Code

Inserting a single row or shorter code can use a pair of anti quotes ( `` Code ...);

A plurality of lines of code may be used a pair of three marks ( `` `` `` language name), a block of code can be introduced:

`a = 1`
​```python```

Effect insert code:

a = 1

printf('打印')

8. Insert mathematical formulas

Use ($$) symbol can write mathematical formulas box fast:

Showing the effect of:
$$
\ align = left the begin {}
A = & \ sum_ {I} = ^. 1. 1 + n-I \
& =. 1. 1 +
\} End {align = left
$$

9. More

More usage Reference: https://www.appinn.com/markdown/

Guess you like

Origin www.cnblogs.com/liveact/p/11469318.html