Day01 MarkDown use

Dy0l

1 Python installation

2 Pycharm installation

3 MarkDown use

Bold 3.1

**加粗**

Effects: bold

3.2 italic

*斜体*

Effect: italic

Highlight 3.3

==高亮==

Effect: == == Highlight

3.4 superscript

3^3^

Effect: 3 ^ 3 ^

3.5 Code References (>)

> hhhhh
>> hhhhh

hhhhh

hhhhh

3.6 code references ( `)

​```python
print('hello world!')
​```

effect:

print('hello world!')

3.7 code references ( `)

`print('hello world!')`

effect:print('hello world!')

3.8 Insert link

<https://www.cnblogs.com/2222bai/>

Effect: https://www.cnblogs.com/2222bai/

3.9 Insert link (described display)

[我的博客](https://www.cnblogs.com/2222bai/ "我的博客") 

Effect: My blog

3.10 Insert Picture

![](https://images.cnblogs.com/cnblogs_com/2222bai/1531540/o_%E5%9B%BE%E7%89%87.jpg)

effect:

3.11 ordered list

1. x
2. y
3. z

effect:

  1. x

  2. Y
  3. with

3.12 unordered list

* x
* y
* z

effect:

  • x
  • Y
  • with

3.13 parting line

---

effect:


3.14 table (centered, left justified, right justified)

name|age
:-|:-:
Tiny|24            

effect:

name age
Tiny 24

3.15 mathematical formulas

公式:$公式:x^x$

effect:

Formula: \ (the X-the X-^ \)

3.16 mathematical formula (massive)

$$
x^x
$$

Effect:
\ [the X-the X-^ \]

Guess you like

Origin www.cnblogs.com/2222bai/p/11390437.html