├── .distignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── wordpress-version-compatibility-checklist.md └── workflows │ ├── asset-update.yml │ └── deploy.yml ├── .wordpress-org ├── banner-1544x500.png ├── banner-1544x500.psd ├── banner-772x250.png ├── blueprints │ └── blueprint.json ├── icon-128x128.png ├── icon-256x256.png ├── icon.ai ├── icon.svg ├── screenshot-1-OLD.png ├── screenshot-1.png ├── screenshot-2-HIDE.png ├── screenshot-2-OLD.png ├── screenshot-4-HIDE.png └── screenshot-HIDE.png ├── LICENSE ├── changelog.txt ├── css ├── block-editor.css └── blocks.css ├── inc ├── block-editor.php └── classic-editor.php ├── js └── block-editor.js ├── mrwweb-simple-tinymce.php └── readme.txt /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.distignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/wordpress-version-compatibility-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.github/ISSUE_TEMPLATE/wordpress-version-compatibility-checklist.md -------------------------------------------------------------------------------- /.github/workflows/asset-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.github/workflows/asset-update.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/banner-1544x500.png -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/banner-1544x500.psd -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/banner-772x250.png -------------------------------------------------------------------------------- /.wordpress-org/blueprints/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/blueprints/blueprint.json -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/icon.ai -------------------------------------------------------------------------------- /.wordpress-org/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/icon.svg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1-OLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/screenshot-1-OLD.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2-HIDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/screenshot-2-HIDE.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2-OLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/screenshot-2-OLD.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-4-HIDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/screenshot-4-HIDE.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-HIDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/.wordpress-org/screenshot-HIDE.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/changelog.txt -------------------------------------------------------------------------------- /css/block-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/css/block-editor.css -------------------------------------------------------------------------------- /css/blocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/css/blocks.css -------------------------------------------------------------------------------- /inc/block-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/inc/block-editor.php -------------------------------------------------------------------------------- /inc/classic-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/inc/classic-editor.php -------------------------------------------------------------------------------- /js/block-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/js/block-editor.js -------------------------------------------------------------------------------- /mrwweb-simple-tinymce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/mrwweb-simple-tinymce.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrwweb/mrw-simplified-editor-wordpress/HEAD/readme.txt --------------------------------------------------------------------------------