饥人谷技术博客

Markdown的基本语法

2018-02-08  本文已影响1人  饥人谷_魏少锋

1. 标题的两种形式

2. 代码

<html>
  <head>
   </head>
  <body>
   </body>
</html>

3. 列表

*   Red
-   Green
+   Blue
1. Red
2. Green
3. Blue

4. 区块引用

使用 > ,例如:

这是一个标题。

  1. 这是第一行列表项。
  2. 这是第二行列表项。

给出一些例子代码:

return shell_exec("echo $input | $markdown_script");

5. 分割线

* * *
***
*****
- - -
---------------------------------------


6. 链接

This is [an example](http://example.com/ "Title") inline link.
This is [an example] [id] reference-style link.
[id]: http://example.com/  "Optional Title Here"
[Google][]

[Google]: http://google.com/

This is url of the baidu.

7. 图片

![]()  /*[]里面为图片批注,少见*/
![Alt text][id]
[id]: url/to/image  "Optional title attribute"

8. 强调

*single asterisks*         /*em*/

_single underscores_

**double asterisks**      /*strong*/

__double underscores__

em
strong

9. 其他

\*literal asterisks\*
*literal asterisks*

http://example.com/

address@example.com

4 < 5
4 &lt; 5
AT&T
AT&amp;T
上一篇下一篇

猜你喜欢

热点阅读