如何在GitHub Pages的Markdown中的列表中放入超链接?

时间:2018-09-21 03:20:23

标签: markdown jekyll github-pages kramdown

我尝试使用以下语法在我的GitHub页面上建立Markdown列表项的超链接:

  1. [Caption]: https://example.com
  2. Another list item

与直观期望相反,它呈现为以下HTML代码

<ol>
  <li></li>
  <li>Another list item</li>
</ol>

如何解决?有正确的语法吗?我的意图是创建可点击的源代码,以用于撰写本文,并将其放在文章的底部。

2 个答案:

答案 0 :(得分:3)

应该是:

  1. [Caption](https://example.com)
  2. Another list item

答案 1 :(得分:1)

来自GitHub的“ Mastering Markdown”:

链接

http://github.com - automatic!
[GitHub](http://github.com)

Mastering Markdown]

https://guides.github.com/features/mastering-markdown/#Links