Skip to content

Instantly share code, notes, and snippets.

@imShakil
Created June 24, 2021 19:47
Show Gist options
  • Save imShakil/1371c7761a88c223fe27ad512c1e0ebf to your computer and use it in GitHub Desktop.
Save imShakil/1371c7761a88c223fe27ad512c1e0ebf to your computer and use it in GitHub Desktop.
dropdown in markdown

Dropdown in markdown

Keep Secret by default

Want to disclose hidden things?

This is your hidden text.

code:

<details>
<summary> Want to disclose hidden things? </summary>
<br>
This is your hidden text.

</details>

Disclosed by default

Want to hide?
This is open by default.

Code:

<details open>
<summary> Want to hide? </summary>
<br>

This is open by default.
</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment