Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 510 Bytes

MARKDOWN.md

File metadata and controls

25 lines (19 loc) · 510 Bytes

Markdown / Github Flavored Markdown

Collapsable Markdown Sections

Here is a quick snippet to make collapsible sections in Github Flavoured Markdown.

Code:

<details>
  <summary>
    This is content that is only shown when collapsed.
  </summary>
  <p>This is content when this element is expanded.</p>
</details>

Preview:

This is content that is only shown when collapsed.

This is content when this element is expanded.