md:markdown:基本操作
markdown的印象笔记效果图
标题(#+空格)
# helloworld ## helloworld ### helloworld #### helloworld ##### helloworld ###### helloworld
序号和星星
* hello world 带点的 * hello victor 带点的 1. hello world 带序号 2. hello victor 带序号
斜体/粗体/下划线/删除线/分割线/引用文本
*hello world 斜体* **hello world 加粗** <u>hello world 下划线</u> ~~hello world 删除线~~~ *** > 引用文本
添加待办事项
* [x] 早上6点起床 * [x] 早上7点学英语 * [ ] 未完成的事项
格式描述
```python def hello(): print("hello world") ```
插入链接
[druid查询官方文档](https://druid.apache.org/docs/latest/design/)
插入图片
![kafak结构图](http://img2.imgtn.bdimg.com/it/u=1600831441,34072345&fm=26&gp=0.jpg)
表格
| 参数 |解释 |例子 | | --- | --- | --- | | cat | 输出文件内容 | cat test.txt | | wc | 查看文件行数 | wc -l filename.txt | | tar | 压缩文件 | tar -czvf file.tar.gz file | | tar | 解压文件 |tar -xzvf file.tar.gz |
##### table
| 参数 |解释 |例子 |
| --- | --- | --- |
| cat | 输出文件内容 | cat test.txt |
| wc | 查看文件行数 | wc -l filename.txt |
| tar | 压缩文件 | tar -czvf file.tar.gz file |
| tar | 解压文件 |tar -xzvf file.tar.gz |