-
-
Save djsnipa1/9ed9cb68505b842983eeb6c8cc3568b7 to your computer and use it in GitHub Desktop.
Revisions
-
dotiful revised this gist
Jun 10, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # Collapsible markdown with [`<details>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details) ```html <details> <summary>Details</summary> hidden, collapsable content... -
dotiful revised this gist
Jun 10, 2019 . 1 changed file with 18 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,20 @@ # Collapsible markdown with [`<details>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details) ```md <details> <summary>Details</summary> hidden, collapsable content... </details> ``` Demo: <details> <summary>Details</summary> hidden, collapsable content... </details> # Nested Collabpsible list items <details> <summary> root </summary> @@ -59,4 +75,4 @@ </details> > [credits](https://gist.github.com/ericclemmons/b146fe5da72ca1f706b2ef72a20ac39d#gistcomment-2694183) -
dotiful created this gist
Jun 10, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,62 @@ # Nested collapsible Markdown list <details> <summary> root </summary> <blockquote> <details> <summary> bin </summary> <blockquote> <details><summary> nest1 </summary> <blockquote> ```sh a b c ``` </blockquote> </details> <details><summary> nest2 </summary><blockquote> a b c </blockquote></details> ```sh file1 file2 file3 ``` </blockquote></details> <details><summary> boot </summary><blockquote> x y z </blockquote></details> <details> <summary> dev </summary> <blockquote> p q r </blockquote> </details> </blockquote> </details> Copied from [here](https://gist.github.com/ericclemmons/b146fe5da72ca1f706b2ef72a20ac39d#gistcomment-2694183)