Markdown 语法(4)- Links 链接

Inline-style 内嵌方式:
[百度](https://www.baidu.com "title text")

Reference-style 应用方式:
[百度][id]
[id]: https://www.baidu.com  "title text"

Relative reference to a repository file 引用存储文件
[立即下载](../path/file/readme.txt "title text")

还可以这样使用
[link text][]
[link text]: http://www.reddit.com

Email邮件
<hanlc109@126.com>

此md生成的HTML如下:

Inline-style 内嵌方式:
百度

Reference-style 应用方式:
百度
Relative reference to a repository file 引用存储文件
立即下载

还可以这样使用
link text
Email邮件
hanlc109@126.com

注:title text是可选项


版权声明:本文为qq_20002267原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_20002267/article/details/45561831