MarkDown学习

当写标题的时候在标题前面加#,#越多,表示标题越小

标题

一级标题 (一个#)

二级标题 (两个#)

三级标题 (三个#)

列表

加上* 或者 - 可以成为无序列表,例如:( * 第一 * 第二 * 第三 )

  • 第一

  • 第二

  • 第三

有序时(数字+.)要像下面这样(1. 2. 3.)

  1. 第一
  2. 第二
  3. 第三
引用

使用(>文字)

this is quator

插入图片

使用 ![图片名]+(图片地址)
例如:

MarkDown学习_第1张图片
baidu

插入链接(比插入图片少了一个!)

使用 [ 网址名 ] (网址 )
例如:baidu

斜体&粗体

两个()包含一段文字就是粗体 粗体(注意前面不要出现或者*)
一个包围一段文字就是斜体 斜体

代码

多行使用(``````)

例如:

   Intent intent = new Intent(c, CustomWebActivity.class); 
   intent.putExtra("common_web_url", url);     
   intent.putExtra("common_web_title", title); 
   c.startActivityForResult(intent, 10);}

单行使用``
Intent intent = new Intent(c, CustomWebActivity.class);

分割线

三个*
例如:


你可能感兴趣的:(MarkDown学习)