├── .github ├── copilot-instructions.md └── workflows │ └── package.yml ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── editor_overview.md └── ext_overview.md ├── editor ├── craco.config.js ├── package-lock.json ├── package.json ├── public │ └── index.html └── src │ ├── ErrorBoundary.js │ ├── TuiEditor.js │ ├── TuiEditor.test.js │ ├── editor-2x-dark.png │ ├── editor-2x.png │ ├── editor-dark.png │ ├── editor.png │ ├── index.css │ ├── index.js │ ├── override-editor-dark.css │ ├── override-editor.css │ ├── override-katex.css │ ├── pad.js │ └── unotesRemarkPlugin.js ├── ext-src ├── extension.js ├── uNote.js ├── uNoteProvider.js ├── uNoteTree.js ├── uNotes.js ├── uNotesCommon.js └── uNotesPanel.js ├── jsconfig.json ├── package.json ├── resources ├── dark │ ├── add_folder.svg │ ├── add_note.svg │ ├── arrow_down.svg │ ├── arrow_up.svg │ ├── convert_images.svg │ ├── folder.svg │ ├── folder_alpha.svg │ ├── note.svg │ ├── refresh.svg │ ├── remove_folder.svg │ └── remove_note.svg ├── light │ ├── add_folder.svg │ ├── add_note.svg │ ├── arrow_down.svg │ ├── arrow_up.svg │ ├── convert_images.svg │ ├── document.svg │ ├── folder.svg │ ├── folder_alpha.svg │ ├── note.svg │ ├── refresh.svg │ ├── remove_folder.svg │ └── remove_note.svg ├── screenshots │ ├── buttons.gif │ ├── intro.gif │ ├── katex.png │ ├── katex_inline.png │ ├── ordering.gif │ ├── split.gif │ ├── tables.gif │ ├── themes.gif │ └── wysiwyg.gif ├── unotes-icon.png └── unotes.svg ├── tsconfig.json ├── unotes.svg ├── unotes_icon.svg └── webpack.config.js /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/README.md -------------------------------------------------------------------------------- /docs/editor_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/docs/editor_overview.md -------------------------------------------------------------------------------- /docs/ext_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/docs/ext_overview.md -------------------------------------------------------------------------------- /editor/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/craco.config.js -------------------------------------------------------------------------------- /editor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/package-lock.json -------------------------------------------------------------------------------- /editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/package.json -------------------------------------------------------------------------------- /editor/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/public/index.html -------------------------------------------------------------------------------- /editor/src/ErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/ErrorBoundary.js -------------------------------------------------------------------------------- /editor/src/TuiEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/TuiEditor.js -------------------------------------------------------------------------------- /editor/src/TuiEditor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/TuiEditor.test.js -------------------------------------------------------------------------------- /editor/src/editor-2x-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/editor-2x-dark.png -------------------------------------------------------------------------------- /editor/src/editor-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/editor-2x.png -------------------------------------------------------------------------------- /editor/src/editor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/editor-dark.png -------------------------------------------------------------------------------- /editor/src/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/editor.png -------------------------------------------------------------------------------- /editor/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/index.css -------------------------------------------------------------------------------- /editor/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/index.js -------------------------------------------------------------------------------- /editor/src/override-editor-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/override-editor-dark.css -------------------------------------------------------------------------------- /editor/src/override-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/override-editor.css -------------------------------------------------------------------------------- /editor/src/override-katex.css: -------------------------------------------------------------------------------- 1 | .katex { font-size: 1.5em; } -------------------------------------------------------------------------------- /editor/src/pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/pad.js -------------------------------------------------------------------------------- /editor/src/unotesRemarkPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/editor/src/unotesRemarkPlugin.js -------------------------------------------------------------------------------- /ext-src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/extension.js -------------------------------------------------------------------------------- /ext-src/uNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/uNote.js -------------------------------------------------------------------------------- /ext-src/uNoteProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/uNoteProvider.js -------------------------------------------------------------------------------- /ext-src/uNoteTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/uNoteTree.js -------------------------------------------------------------------------------- /ext-src/uNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/uNotes.js -------------------------------------------------------------------------------- /ext-src/uNotesCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/uNotesCommon.js -------------------------------------------------------------------------------- /ext-src/uNotesPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/ext-src/uNotesPanel.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/package.json -------------------------------------------------------------------------------- /resources/dark/add_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/add_folder.svg -------------------------------------------------------------------------------- /resources/dark/add_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/add_note.svg -------------------------------------------------------------------------------- /resources/dark/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/arrow_down.svg -------------------------------------------------------------------------------- /resources/dark/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/arrow_up.svg -------------------------------------------------------------------------------- /resources/dark/convert_images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/convert_images.svg -------------------------------------------------------------------------------- /resources/dark/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/folder.svg -------------------------------------------------------------------------------- /resources/dark/folder_alpha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/folder_alpha.svg -------------------------------------------------------------------------------- /resources/dark/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/note.svg -------------------------------------------------------------------------------- /resources/dark/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/refresh.svg -------------------------------------------------------------------------------- /resources/dark/remove_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/remove_folder.svg -------------------------------------------------------------------------------- /resources/dark/remove_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/dark/remove_note.svg -------------------------------------------------------------------------------- /resources/light/add_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/add_folder.svg -------------------------------------------------------------------------------- /resources/light/add_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/add_note.svg -------------------------------------------------------------------------------- /resources/light/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/arrow_down.svg -------------------------------------------------------------------------------- /resources/light/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/arrow_up.svg -------------------------------------------------------------------------------- /resources/light/convert_images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/convert_images.svg -------------------------------------------------------------------------------- /resources/light/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/document.svg -------------------------------------------------------------------------------- /resources/light/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/folder.svg -------------------------------------------------------------------------------- /resources/light/folder_alpha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/folder_alpha.svg -------------------------------------------------------------------------------- /resources/light/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/note.svg -------------------------------------------------------------------------------- /resources/light/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/refresh.svg -------------------------------------------------------------------------------- /resources/light/remove_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/remove_folder.svg -------------------------------------------------------------------------------- /resources/light/remove_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/light/remove_note.svg -------------------------------------------------------------------------------- /resources/screenshots/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/buttons.gif -------------------------------------------------------------------------------- /resources/screenshots/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/intro.gif -------------------------------------------------------------------------------- /resources/screenshots/katex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/katex.png -------------------------------------------------------------------------------- /resources/screenshots/katex_inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/katex_inline.png -------------------------------------------------------------------------------- /resources/screenshots/ordering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/ordering.gif -------------------------------------------------------------------------------- /resources/screenshots/split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/split.gif -------------------------------------------------------------------------------- /resources/screenshots/tables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/tables.gif -------------------------------------------------------------------------------- /resources/screenshots/themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/themes.gif -------------------------------------------------------------------------------- /resources/screenshots/wysiwyg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/screenshots/wysiwyg.gif -------------------------------------------------------------------------------- /resources/unotes-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/unotes-icon.png -------------------------------------------------------------------------------- /resources/unotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/resources/unotes.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/unotes.svg -------------------------------------------------------------------------------- /unotes_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/unotes_icon.svg -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanmcalister/unotes/HEAD/webpack.config.js --------------------------------------------------------------------------------