Makedown常见用法

一级标题

二级标题

三级标题

四级标题

最多六级标题

列表

  • 姓名
  • 年龄
  • 籍贯
  • 民族
  1. 王1
  2. 王2
  3. 王3

图片

http://www.baidu.com

http://www.baidu.com

test_pic_超链接
插入图片,用外链会插入失败,要用自带的插入图片(本地上传)

Makedown常见用法_第1张图片
timg.jpg

引用测试

日照香炉生紫烟
遥看瀑布挂前川

字体

加粗
倾斜
deleted text

代码引用

'hello'
是tab上面的那个键‘`’
hello world单行代码

import base64
# base64编码
encodestr = base64.b64encode('https://mvp.aliyun.com/mvp/detail/28?spm=5176.10676864.list.122.2e92FyE0FyE0d2'.encode('utf8'))
print(str(encodestr, 'utf8'))

# base64解码
decodestr = base64.b64decode(encodestr)
print(str(decodestr, 'utf8'))
多行代码示例

表格

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

: 

dog | bird | cat
----|------|----
foo | foo  | foo
bar | bar  | bar
baz | baz  | baz

你可能感兴趣的:(Makedown常见用法)