Last active
October 10, 2021 13:28
-
-
Save michelts/f81bc6c6e67598f77a266eb9d80ed896 to your computer and use it in GitHub Desktop.
HTML code for tree-structured data
This file contains 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 characters
<ul> | |
<li><button type="button">-</button> /home <button type="button">select</button> | |
<ul> | |
<li><button type="button">-</button> /home/michel <button type="button">select</button> | |
<ul> | |
<li><button type="button">+</button> /home/michel/Documents <button type="button" disabled="">selected</button></li> | |
<li><button type="button">+</button> /home/michel/Pictures <button type="button">select</button></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment