【发布时间】:2013-04-10 05:14:57
【问题描述】:
我正在尝试在使用 Jekyll 时将 Markdown 嵌套在 HTML 文件中。有没有办法实现以下目标?
# index.html
---
layout: default
---
<p>[Stack Overflow](http://www.stackoverflow.com)</p>
注意:我知道我可以这样做。
# index.html
---
layout: default
---
<p><a href="http://www.stackoverflow.com">Stack Overflow</a></p>
【问题讨论】: