markdown学习(二)

1.标题:

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

一级标题

二级标题

2.自然段改行:两个空格
东西南北
东西南位
记得就偶滴
三开始看看
螺栓开始的快速南宁市

3.引用:>

走自己的路,让别人说去吧

4.增加分割线:
东西南北  
三个*


开始看看设
三个下划线


5.强调表现:
恒恒 斜体 恒恒
哈哈哈 粗体 哈哈哈

6.列表表示: 
无序列表:-,+,*
有序列表:数字

  • 读书
    • 看报
    • 听歌

  1. 看书
  2. 听歌
  3. 看报

7.超文本链接:
https://www.csdn.net/
https://www.csdn.net/
csdn网站
csdn网站

8.代码高亮显示:
代码的高亮显示符号:

  
		public Student(String name, int age)
		{
			super();
			this.name = name;
			this.age = age;
		}    

这里与csdn不同,需要以上面那种格式来写,但是csdn用三个```+语言类型包起来即可

public Student(String name, int age)
	{
		super();
		this.name = name;
		this.age = age;
	}  
   public Student(String name, int age)
  {
  	super();
  	this.name = name;
  	this.age = age;
  }   

猜你喜欢

转载自blog.csdn.net/qq_42764468/article/details/86539204