區(qū)塊元素
段落和換行
一個Markdown段落是由一個或多個連續(xù)的文本行組成某饰,它的前后要有一個以上的空行猛蔽。
區(qū)塊引用
這是引用哈哈哈哈
這里是嵌套引用
使用其他標(biāo)記
- 有序列表
- 有序列表2
這就不是引用了,因?yàn)橹虚g多了一個空行
各種列表
- Red
- Green
- Blue
- Red
- Green
- Blue
- Red
- Green
- Blue
- Red
- Green
- Blue
切換不同的列表形式旗扑,中間需要兩個空行
- test
引用一下
- test
- test
- test
- test
- test
- test
- test
- test
列表的嵌套蹦骑,列表內(nèi)引用
代碼區(qū)塊
代碼區(qū)塊
<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>