├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── favicon.png ├── index.html ├── scripts ├── app_functions.js ├── document_title.js ├── file_export.js ├── file_import.js ├── main.js ├── modal.js ├── navbar.js ├── old │ ├── diff.js │ ├── difflib.js │ ├── jquery.cookie.min.js │ ├── jquery.minicolors.min.js │ ├── jquery.mousewheel.min.js │ ├── kineticjs.js │ └── mindmap.min.js ├── pane_resizer.js ├── settings.js ├── shortcuts.js └── unsaved_changes.js └── styles ├── app.css ├── document_title.css ├── editor.css ├── modal.css ├── navbar.css ├── old ├── customstyles.css ├── jquery-ui-1.10.3.custom.min.css └── jquery.minicolors.css ├── pane_resizer.css ├── preferences_modal.css └── viewer.css /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "type": "chrome", 9 | "request": "launch", 10 | "name": "Launch Chrome against localhost", 11 | "url": "http://localhost:8080", 12 | "webRoot": "${workspaceFolder}" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Please note 2 | The current version of the tool utilizes some minified JavaScript and CSS code from the original [Text2MindMap.com](http://www.text2mindmap.com), which I didn't personally write. This was originally just meant to be a quick hack for personal use, and while I'm glad so many people have found a use for it, I unfortunately cannot dedicate the time I had originally intended to make this fully functioning web app. So let me reiterate, **this project is not in active development** at the current time, and might never be. 3 | 4 | # Text2MindMap 5 | An online tool for making mindmaps by writing indented lists. 6 | 7 | A few months ago one of my favorite tools [Text2MindMap](http://www.text2mindmap.com) went down and since there doesn't seem to be any plans to bring it back up I created my own version of the site. It's basically just a quick mashup between some of the code from the original site and some code from my [Markdown Editor](https://tobloef.com/markant/), but I hope someone will find it as useful. 8 | 9 |  10 | -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobloef/text2mindmap/b85695dcc1611fdcfe1c28fac93574c16e25462e/favicon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 14 | 15 | 16 | 17 |