Github-Markdown语法
程序员文章站
2022-03-30 08:38:53
...
markdown 语法入门
sunshine
使用markdown心得体会:
- markdown特别适合写博客,兼容部分html标签,可以高亮显示代码。
- 语法简单好用,而且可以直接导出pdf。
- 各种语法组合,可以写出简单优雅的文档,赞!
-
我是一个引用
-
//接下来是C语言代码 #include <stdio.h> int main(int argc, char** argv) { printf("Hello world"); return 0; }
-
我是 粗体
-
我是 斜体
-
我是
删除线 -
我是
inline code
,printf("hello world!")
-
我是超链接:GitHub
-
我是图片[外链图片转存失败(img-3Fo2kafm-1565321139260)(https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png “I am a github cat! miao~”)]
-
我是
ordered
:- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
-
我是
unordered
- Item 1
- Item 2
- Item 2a
- Item 2b
-
我是
taskList
- coding task
- running task
- other task
- other task
-
我是
table
First Header Second Header hello world welcome you left center right hello world language welcome you c/c++ -
code above
<span id='top'></span>
### <span id = 'title'> <center> markdown 语法入门</center> </span>
<p align='right'> sunshine </p>
---
1. >我是一个引用
1. <span id='code'></span>
\```c
//接下来是C语言代码
#include <stdio.h>
int main(int argc, char** argv)
{
printf("Hello world");
return 0;
}
\```
1. 我是 **粗体**
1. 我是 *斜体*
1. 我是 ~~删除线~~
1. 我是 `inline code`,`printf("hello world!")`
1. 我是超链接:[GitHub](http://github.com "press me")
1. 我是图片![picture](https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png "I am a github cat! miao~")
1. 我是`ordered`:
1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
1. 我是`unordered`
* Item 1
* Item 2
* Item 2a
* Item 2b
1. 我是 `taskList`
- [x] coding task
- [x] running task
- [ ] other task
- [ ] other task
1. 我是`table`
First Header | Second Header
------------ | -------------
<center>hello</center>| world
**welcome** | <center>*you*<center>
left | center | right
:--- | :---:|---:
hello| world | language
**welcome** | <center>*you*<center> | c/c++
1. 我要跳转到 [top](#top),我要跳转到 [title](#title),我要跳转到[c语言代码](#code)
<span id='end'> </span>