上の建物のGauravの答えと、このGHの問題は、ここで内部の高度な書式設定を使用する方法です<details>タグGitHubの上:
注:2016年からの元の回答が必要です<p>。2017年以降、その要件は後</summary>(つまり、拡張されたコンテンツの前)の空の行です。2019年までのどこかで、マークダウンイン<summary>も機能しなくなりました。これはハック/回避策であり、サポートされている機能/ユースケースではないため、かなり不安定であることがわかります。また、issue / PRコメントはWikiとは異なるフォーマットをサポートしていることに注意してください(たとえば、2020年4月の下線は、要約ではWikiでのみ機能し、問題では機能しません)。
<details>
  <summary>stuff with *mark* **down** in `summary` doesn't work any more, use HTML <i>italics</i> and <b>bold</b> instead in <code><summary></code> (<i>click to expand</i>)</summary>
  
## *formatted* **heading** with [a](link)
```java
code block
```
  <details>
    <summary><u>nested</u> <b>stuff</b> (<i>click to expand</i>)</summary>
    
A bit more than normal indentation is necessary to get the nesting correct,
 1. list
 1. with
    1. nested
    1. items
        ```java
        // including code
        ```
    1. blocks
 1. and continued non-nested
  </details>
</details>
現在、次のようにレンダリングされ、予想されるパーツは拡張可能で折りたたみ可能です。
初期状態

概要をクリックします

ネストされた要約をクリックします
