区块元素
段落和换行
一个Markdown段落是由一个或多个连续的文本行组成,它的前后要有一个以上的空行。
区块引用
这是引用哈哈哈哈
这里是嵌套引用
使用其他标记
- 有序列表
- 有序列表2
这就不是引用了,因为中间多了一个空行
各种列表
- Red
- Green
- Blue
- Red
- Green
- Blue
- Red
- Green
- Blue
- Red
- Green
- Blue
切换不同的列表形式,中间需要两个空行
- test
引用一下
- test
- test
- test
- test
- test
- test
- test
- test
列表的嵌套,列表内引用
代码区块
代码区块
<pre><code> #include <iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
// A utility function to get max of two integers
int max (int x, int y) { return (x > y)? x : y; }
</code></pre>