CSDN Github Markdown编辑常用功能符号补充

1. 复选框(待办事项):

- [x] 内容
- [ ] 内容
  • 内容
  • 内容

2. 空行

In this project we cover several segments as follows:
内容

In this project we cover several segments as follows:

内容

3. bash格式代码

$ git clone https://github.com/YunYang1994/tensorflow-yolov3.git

4. 代码中加链接

- [`class.names`](https://github.com/YunYang1994/tensorflow-yolov3/blob/master/data/classes/coco.names)
  • class.names

5. 不易出错的代码块格式(csdn默认的是前面加四个空格[一个缩进符Tab])

```python
xxx/xxx.jpg 18.19,6.32,424.13,421.83,20 323.86,2.65,640.0,421.94,20 
xxx/xxx.jpg 48,240,195,371,11 8,12,352,498,14
# image_path x_min, y_min, x_max, y_max, class_id  x_min, y_min ,..., class_id 
```

或:
py xxx/xxx.jpg 18.19,6.32,424.13,421.83,20 323.86,2.65,640.0,421.94,20 xxx/xxx.jpg 48,240,195,371,11 8,12,352,498,14 # image_path x_min, y_min, x_max, y_max, class_id x_min, y_min ,..., class_id

xxx/xxx.jpg 18.19,6.32,424.13,421.83,20 323.86,2.65,640.0,421.94,20 
xxx/xxx.jpg 48,240,195,371,11 8,12,352,498,14
# image_path x_min, y_min, x_max, y_max, class_id  x_min, y_min ,..., class_id 

6. 加粗

**output**

output

7. 另一种加·的格式

* Discard all boxes with `Pc <= 0.4`
  • Discard all boxes with Pc <= 0.4

你可能感兴趣的:(CSDN)