Iva*_*van 12 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>
这怎么可能解决?是否有正确的语法?我的目的是创建一个用于撰写文章的信息来源的可点击列表,并将其放在文章的底部。
Ale*_*vey 25
它应该是:
  1. [Caption](https://example.com)
  2. Another list item