Markdown语法
Posted Will.Guo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Markdown语法相关的知识,希望对你有一定的参考价值。
Markdown语法
区块引用
Blockquotes
区块引用可嵌套
列表
- 无序列表
- red
- Green
- Blue
- 有序列表
- MeHale
- Parish
代码区块
代码块
``` java
书写方式:四个空格( )
```
@requires_authorization
def somefunc(param1='', param2=0):
'''A docstring'''
if param1 > param2: # interesting
print 'Greater'
return (param2 - param1 + 1) or None
class SomeClass:
pass
>>> message = '''interpreter
... prompt'''
表格
Item | Value | Qty |
---|---|---|
Computer | 123Yuan | 5 |
Calculater | 321Dollar | 3 |
分割线
链接
行内式
This is Baidu link
参考式
this is google link
强调
倾斜
加粗
注:* 和 _ 两边都有空白的话,它们就只会被当成普通的符号,如果要在文字前后直接插入普通的星号或底线,用反斜线
行内代码
Use the printf()
function
块注释
hello1
字符强制转换
\\ : 反斜杠
例如 a_b_c, 应写为 a_b_c
- hi ↩
以上是关于Markdown语法的主要内容,如果未能解决你的问题,请参考以下文章