markdown是一種電子郵件風(fēng)格的文字標(biāo)記語言,讓你專注于文字而不是排版
- markdown有六級標(biāo)題,只需要在前面加上#就可以了
- 希望列表有序,只需要加上-或者*或者1. 2. 3.
- 鏈接和圖片
加上[]()就好了,例如百度,圖片前面多了一個! - 引用加上>,本篇文章開頭第一句話就是引用
- 用兩個*包含的是粗體,一個*包含的斜體
粗體,斜體 - 代碼的引用
用```置于代碼首行和末尾行
List<OperateTools> result = operateTools.stream().filter
(x -> (operateToolInsertDto.getShowTimeBegin().getTime() < x.getShowTimeBegin().getTime()
&& operateToolInsertDto.getShowTimeEnd().getTime() > x.getShowTimeBegin().getTime()) ||
(operateToolInsertDto.getShowTimeBegin().getTime() > x.getShowTimeBegin().getTime()
&& operateToolInsertDto.getShowTimeBegin().getTime() < x.getShowTimeEnd().getTime()))
.collect(Collectors.toList());
- 分割線三個*
- 表格
表格比較復(fù)雜,復(fù)制過來的
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
- ps簡書是一款優(yōu)秀的web端markdown工具