Skip to content

Instantly share code, notes, and snippets.

@jacobmoroni
Created February 21, 2022 17:22
Show Gist options
  • Save jacobmoroni/9a14fdde727d855ce57f7bb5b27773ae to your computer and use it in GitHub Desktop.
Save jacobmoroni/9a14fdde727d855ce57f7bb5b27773ae to your computer and use it in GitHub Desktop.
Markdown folded sections (default open and closed)

Markdown Folded Text (Default Open)

<details open>

  <summary>Click to collapse</summary>
  
  this one starts expanded because of the "open"
  
</details>
Click to collapse

this one starts expanded because of the "open"

Markdown folded section (default closed)

<details>

  <summary>Click to expand</summary>
  
  this one starts collapsed
  
</details>
Click to expand

this one starts collapsed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment