Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 Markdown 写一个页面。我正在尝试实现以下内容:
<a href="#about">Something</a>
这样做的推荐方法是什么?我正在使用 Jekyll Bootstrap。
如果你的about锚是这样定义的:
about
<a id="about"></a>About
这可以与其他元素一起添加,例如:
## <a id="about"></a>About
然后你应该能够使用通常的降价链接:
[Something](#about)