tag.">
跳至主要内容

用折叠部分组织信息

你可以使用 <details> 标签创建一个折叠部分,从而简化 Markdown。

创建折叠部分

你可以创建一个折叠部分,供读者选择展开,从而暂时隐藏 Markdown 的部分内容。例如,当你想在问题评论中包含技术细节,而这些细节可能与每个读者无关或不感兴趣时,你可以将这些细节放在折叠部分中。

<details> 块中的任何 Markdown 都将被折叠,直到读者单击 展开详细信息。

<details> 块中,使用 <summary> 标签告知读者内部内容。标签显示在 .

<details>

<summary>Tips for collapsed sections</summary>

### You can add a header

You can add text within a collapsed section. 

You can add an image or a code block, too.

```ruby
   puts "Hello World"
```

</details>

<summary> 标签内的 Markdown 默认情况下将被折叠

Screenshot of the Markdown above on this page as rendered on GitHub, showing a right-facing arrow and the header "Tips for collapsed sections."

读者单击后 ,详细信息将展开

Screenshot of the Markdown above on this page as rendered on GitHub, indicating that a collapsed section can contain headers, sentences of text, images, and code blocks.

延伸阅读