我尝试使用以下语法在我的GitHub页面上建立Markdown列表项的超链接:
1. [Caption]: https://example.com
2. Another list item
与直观期望相反,它呈现为以下HTML代码
<ol>
<li></li>
<li>Another list item</li>
</ol>
如何解决?有正确的语法吗?我的意图是创建可点击的源代码,以用于撰写本文,并将其放在文章的底部。
答案 0 :(得分:3)
应该是:
1. [Caption](https://example.com)
2. Another list item
答案 1 :(得分:1)
来自GitHub的“ Mastering Markdown”:
http://github.com - automatic!
[GitHub](http://github.com)
https://guides.github.com/features/mastering-markdown/#Links