如何在 Github markdown 中折叠内容?

Posted

技术标签:

【中文标题】如何在 Github markdown 中折叠内容?【英文标题】:How can I fold content in Github markdown? 【发布时间】:2019-02-12 07:32:42 【问题描述】:

github如何折叠文本块?

看看这个issuecomment

【问题讨论】:

【参考方案1】:

检查这是否遵循dear-github issue 166,其中提到:

支持可折叠部分:

<details>
<summary>Click to expand</summary>

whatever

</details>

见more in this example。

关键是将整个内容包裹在&lt;p&gt;中:

<details><summary>stuff with *mark* **down**</summary><p>

## _formatted_ **heading** with [a](link)

---
standard 3-backtick code block omitted from here due to escaping issues
---

Collapsible until here.
</p></details>

【讨论】:

如果你只想包装一个代码块,你可以省略---;您只需要在&lt;p&gt;前后各有一个空行 的围栏代码块。

以上是关于如何在 Github markdown 中折叠内容?的主要内容,如果未能解决你的问题,请参考以下文章

在MarkDown文档中添加jQuery折叠面板

markdown 实现代码折叠效果

新的vim自带markdown插件,请问markdown怎么折叠文本,只显示标

md中折叠角度是啥意思

为markdown代码块添加行号,复制和折叠按钮

Vim Markdown 折叠?