1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【GitHub】Markdown で折りたたみを表現する方法

Last updated at Posted at 2022-05-30

概要

GitHubのマークダウンでの記載で折りたたみする場合の記載方法が独自にあったのでメモ

折りたたみ

<summary>折りたたまれるタイトル</summary>
<pre>
<code>
折りたたまれる部分
折りたたまれる部分
折りたたまれる部分
</code>
</pre>
</details>

Qiitaの記載はこうすると折りたたみできる

<details>
<summary>折りたたみ部分のタイトル</summary>
折りたたまれる部分
折りたたまれる部分
折りたたまれる部分
</details>
折りたたみ部分のタイトル 折りたたまれる部分 折りたたまれる部分 折りたたまれる部分

参考

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?