使用推薦
- mac下建議使用 Mou
- windows 下建議使用 MarkdownPad
標(biāo)題
- 根據(jù)使用的 # 的多少來(lái)改變字體的大小相當(dāng)于html中的h標(biāo)簽
列表
- 使用* 就可以獲得列表
引用
- 使用 > 右箭頭就可以獲取引用例如
this is a 引用
圖片與鏈接
- 圖片為 !{ImgCap}{/ImgCap}
- 鏈接為 []()
- 區(qū)別在于一個(gè)加了!另一個(gè)沒(méi)有加
- 注意加入圖片需要圖床攒霹,這里推薦圍脖圖床修復(fù)計(jì)劃 與 CloudApp 的服務(wù)寿谴,生成URL地址即可。
- 比如以下(注意符號(hào)使用英文下的)
百度一下
粗體和斜體的使用
- 粗體的使用只需要使用 *粗體 * 即可
- 斜體使用 * 斜體 * 即可
表格
- 表格的格式比較的麻煩蚓胸,不過(guò)記住有這個(gè)粘貼復(fù)制即可
- 代碼例子如下驾凶,拿來(lái)主義
<pre>
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
</pre>
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
代碼框
- 如果你是一個(gè)程序猿,想要讓代碼原樣顯示也很簡(jiǎn)單實(shí)用 es6里面的模板字符串即可 注意可能是版本更新這里要使用三個(gè) ```` 中間是代碼 ````才可以
var compiler = webpack(webpackConfig){
compiler.plugin('compilation', function (compilation) {
compilation.plugin('html-webpack-plugin-after-emit',
function (data, cb) {
hotMiddleware.publish({ action: 'reload' })
cb()
})
})
Object.keys(proxyTable).forEach(function (context) {
var options = proxyTable[context]
if (typeof options === 'string') {
options = { target: options }
}
app.use(proxyMiddleware(options.filter || context, options))
})
分割線
- 隨便三個(gè)* 或者-減號(hào)都可以