Day 01 Markdown基本语法

Markdown基本语法

标题

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

加粗

加粗

斜体

斜体

高亮

高亮

上标

22

下标

H2O

代码引用(>式)

hello markdown!

代码引用(```式)

print ('hello bigb')

代码引入(`式)

print ('hello bigb')

插入链接(链接显示)

https://www.cnblogs.com/bigb/

插入链接(链接描述显示)

bigb的博客

插入图片(链接)

插入图片(图片路径)

有序列表

  1. one
  2. two
  3. three

无序列表

  • one
  • two
  • three

分割线


表格

name age sex
black 22
white 21

数学公式(行内嵌)

(sum_{i=1}^{10}f(i)\,\, ext{thanks})

数学公式(块状)

[sum_{i=1}^{10}f(i)\,\, ext{thanks} ]

原文地址:https://www.cnblogs.com/bigb/p/11390503.html