├── .github ├── FUNDING.yml └── workflows │ └── gh-pages.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MindAPI.md ├── README.md ├── Resized_Company_Logo_Here_115x115.png ├── Sponsorship.md ├── docs ├── .nojekyll ├── config.toml ├── content │ ├── _index.md │ ├── about.md │ ├── play │ │ └── _index.md │ └── references.md ├── layouts │ ├── index.html │ ├── partials │ │ └── header.html │ └── section │ │ └── play.html └── static │ ├── css │ └── custom.css │ ├── js │ └── mindmap.js │ └── mindapi.png ├── logo MindAPI_git.jpg ├── mindapi_cover.png └── mindapi_play.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: mindapi 2 | -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/public 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /MindAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/MindAPI.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/README.md -------------------------------------------------------------------------------- /Resized_Company_Logo_Here_115x115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/Resized_Company_Logo_Here_115x115.png -------------------------------------------------------------------------------- /Sponsorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/Sponsorship.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/content/about.md -------------------------------------------------------------------------------- /docs/content/play/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Play with it live 3 | --- -------------------------------------------------------------------------------- /docs/content/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/content/references.md -------------------------------------------------------------------------------- /docs/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/layouts/index.html -------------------------------------------------------------------------------- /docs/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/layouts/partials/header.html -------------------------------------------------------------------------------- /docs/layouts/section/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/layouts/section/play.html -------------------------------------------------------------------------------- /docs/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/static/css/custom.css -------------------------------------------------------------------------------- /docs/static/js/mindmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/static/js/mindmap.js -------------------------------------------------------------------------------- /docs/static/mindapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/docs/static/mindapi.png -------------------------------------------------------------------------------- /logo MindAPI_git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/logo MindAPI_git.jpg -------------------------------------------------------------------------------- /mindapi_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/mindapi_cover.png -------------------------------------------------------------------------------- /mindapi_play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsopas/MindAPI/HEAD/mindapi_play.gif --------------------------------------------------------------------------------