你可以创建一个折叠部分,供读者选择展开,从而暂时隐藏 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 默认情况下将被折叠
读者单击后 ,详细信息将展开