├── .gitignore ├── LICENSE.md ├── README.md ├── screen.gif └── src ├── .editorconfig ├── Our.Umbraco.EditorJs.sln ├── assembly ├── Controllers │ ├── ImageToolController.cs │ └── LinkToolController.cs ├── DataEditors │ ├── EditorJsConfigurationEditor.cs │ ├── EditorJsDataEditor.cs │ └── EditorJsDataValueEditor.cs ├── Our.Umbraco.EditorJs.csproj ├── Properties │ └── AssemblyInfo.cs ├── ValueConverters │ ├── EditorJsModel.cs │ └── EditorJsValueConverter.cs └── packages.config ├── blocks └── umbracomedia │ ├── .babelrc │ ├── .eslintrc │ ├── .npmignore │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── index.css │ ├── index.js │ ├── svg │ │ ├── background.svg │ │ ├── border.svg │ │ ├── button-icon.svg │ │ ├── stretched.svg │ │ └── toolbox.svg │ ├── tunes.js │ ├── ui.js │ └── uploader.js │ └── webpack.config.js └── www ├── App_Plugins └── EditorJs │ ├── backoffice.css │ ├── editorjs-tools-config.js │ ├── editorjs.html │ ├── editorjs.js │ ├── lib │ ├── blocks │ │ ├── checklist.js │ │ ├── code.js │ │ ├── delimiter.js │ │ ├── embed.js │ │ ├── header.js │ │ ├── inline-code.js │ │ ├── link.js │ │ ├── list.js │ │ ├── marker.js │ │ ├── quote.js │ │ ├── rawHtml.js │ │ ├── table.js │ │ ├── umbracomedia.js │ │ └── warning.js │ └── editorjs │ │ ├── editor.js │ │ ├── editor.licenses.txt │ │ └── sprite.svg │ ├── package.manifest │ ├── settings-tools-overlay.html │ ├── settings-tools-overlay.js │ ├── settings-tools.html │ └── settings-tools.js ├── Views └── Partials │ └── Blocks │ ├── checklist.cshtml │ ├── code.cshtml │ ├── delimiter.cshtml │ ├── header.cshtml │ ├── image.cshtml │ ├── linkTool.cshtml │ ├── list.cshtml │ ├── paragraph.cshtml │ ├── quote.cshtml │ ├── raw.cshtml │ ├── table.cshtml │ └── warning.cshtml └── bin └── Our.Umbraco.EditorJs.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/README.md -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/screen.gif -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Our.Umbraco.EditorJs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/Our.Umbraco.EditorJs.sln -------------------------------------------------------------------------------- /src/assembly/Controllers/ImageToolController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/Controllers/ImageToolController.cs -------------------------------------------------------------------------------- /src/assembly/Controllers/LinkToolController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/Controllers/LinkToolController.cs -------------------------------------------------------------------------------- /src/assembly/DataEditors/EditorJsConfigurationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/DataEditors/EditorJsConfigurationEditor.cs -------------------------------------------------------------------------------- /src/assembly/DataEditors/EditorJsDataEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/DataEditors/EditorJsDataEditor.cs -------------------------------------------------------------------------------- /src/assembly/DataEditors/EditorJsDataValueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/DataEditors/EditorJsDataValueEditor.cs -------------------------------------------------------------------------------- /src/assembly/Our.Umbraco.EditorJs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/Our.Umbraco.EditorJs.csproj -------------------------------------------------------------------------------- /src/assembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/assembly/ValueConverters/EditorJsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/ValueConverters/EditorJsModel.cs -------------------------------------------------------------------------------- /src/assembly/ValueConverters/EditorJsValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/ValueConverters/EditorJsValueConverter.cs -------------------------------------------------------------------------------- /src/assembly/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/assembly/packages.config -------------------------------------------------------------------------------- /src/blocks/umbracomedia/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/.babelrc -------------------------------------------------------------------------------- /src/blocks/umbracomedia/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/.eslintrc -------------------------------------------------------------------------------- /src/blocks/umbracomedia/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/.npmignore -------------------------------------------------------------------------------- /src/blocks/umbracomedia/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/package-lock.json -------------------------------------------------------------------------------- /src/blocks/umbracomedia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/package.json -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/index.css -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/index.js -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/svg/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/svg/background.svg -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/svg/border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/svg/border.svg -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/svg/button-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/svg/button-icon.svg -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/svg/stretched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/svg/stretched.svg -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/svg/toolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/svg/toolbox.svg -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/tunes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/tunes.js -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/ui.js -------------------------------------------------------------------------------- /src/blocks/umbracomedia/src/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/src/uploader.js -------------------------------------------------------------------------------- /src/blocks/umbracomedia/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/blocks/umbracomedia/webpack.config.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/backoffice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/backoffice.css -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/editorjs-tools-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/editorjs-tools-config.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/editorjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/editorjs.html -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/editorjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/editorjs.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/checklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/checklist.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/code.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/delimiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/delimiter.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/embed.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/header.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/inline-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/inline-code.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/link.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/list.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/marker.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/quote.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/rawHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/rawHtml.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/table.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/umbracomedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/umbracomedia.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/blocks/warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/blocks/warning.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/editorjs/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/editorjs/editor.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/editorjs/editor.licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/editorjs/editor.licenses.txt -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/lib/editorjs/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/lib/editorjs/sprite.svg -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/package.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/package.manifest -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/settings-tools-overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/settings-tools-overlay.html -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/settings-tools-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/settings-tools-overlay.js -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/settings-tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/settings-tools.html -------------------------------------------------------------------------------- /src/www/App_Plugins/EditorJs/settings-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/App_Plugins/EditorJs/settings-tools.js -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/checklist.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/checklist.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/code.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/code.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/delimiter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/delimiter.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/header.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/image.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/image.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/linkTool.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/linkTool.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/list.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/list.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/paragraph.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/paragraph.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/quote.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/quote.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/raw.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/raw.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/table.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/table.cshtml -------------------------------------------------------------------------------- /src/www/Views/Partials/Blocks/warning.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/Views/Partials/Blocks/warning.cshtml -------------------------------------------------------------------------------- /src/www/bin/Our.Umbraco.EditorJs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrevolution/umbraco-editorjs/HEAD/src/www/bin/Our.Umbraco.EditorJs.dll --------------------------------------------------------------------------------