Markdown 简记

标题

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

列表

列表格式

在 Markdown 中,你只需要在文字前面加上 - 就可以了,例如:

  • 文本1
  • 文本2
  • 文本3

有序列表

在文字前面加上 1. 2. 3. 就可以了,例如:

  1. 文本1
  2. 文本2
  3. 文本3

超链接

  1. 网页链接
    [显示文本](网址)
    [马克飞象](https://maxiang.io/)

  2. 图片链接
    ![龙梦柔](http://upload-images.jianshu.io/upload_images/14991307-aabb4839569c94c5.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

    龙梦柔

引用及粗斜体

落叶泛黄金黄的银杏叶铺满怎么地面与这昏暗的阴天相衬,更加地璀璨。
真好

单段代码引用

print("hello world")

多段代码引用

#python
name=imput(please entry you name )
print("hello",name)

表格

| Tables | Are | Cool | 
| ------------- |:-------------:| -----:|
 | col 3 is | right-aligned | $1600 | 
| col 2 is | centered | $12 | 
| zebra stripes | are neat | $1 |
Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

MarkDown小教程:
https://www.jianshu.com/p/q81RER

你可能感兴趣的:(Markdown 简记)