I'm a big fan of markdown, as a developer it's quick and easy to write documentation. What I also like to do is create Mind Maps. They are very handy for quickly writing things down that are in your head or to give some guidance in topics.

Recently I found this nice tool markmap-libthat brings both worlds together :)

$ npm i markmap-lib -g

Now create a simple file and save it , like markdown.md :

# FullStack developer

## Programming languages

- [Java](https://www.java.com/)
- [NodeJS](https://nodejs.org/en/)

## Databases

### SQL

- MySQL
- Oracle
- PostgreSQL

---

### NoSQL

- MongoDB
- Redis

## Deployments

- Kubernetes
- OpenShift

One more thing left to do:

$ markmap markdown.md

And it will result in to this awesome html page :) niice..