Markdown 如何在GitHub页面上的降价列表中放置超链接?

Markdown 如何在GitHub页面上的降价列表中放置超链接?,markdown,jekyll,github-pages,kramdown,Markdown,Jekyll,Github Pages,Kramdown,我尝试使用以下语法将我的GitHub页面上的降价列表项设置为超链接: 1. [Caption]: https://example.com 2. Another list item 与直观的预期相反,它呈现为以下HTML代码 <ol> <li></li> <li>Another list item</li> </ol> 另一个列表项 这怎么可能解决呢?有正确的语法吗?我的意图是创建一个可点击的信息来源

我尝试使用以下语法将我的GitHub页面上的降价列表项设置为超链接:

  1. [Caption]: https://example.com
  2. Another list item
与直观的预期相反,它呈现为以下HTML代码

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

  • 另一个列表项
  • 这怎么可能解决呢?有正确的语法吗?我的意图是创建一个可点击的信息来源列表,用于撰写文章,并将其放在文章的底部。

    应该是:

      1. [Caption](https://example.com)
      2. Another list item
    
    从GitHub的“”:

    链接

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