├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS └── workflows │ ├── build-release-zip.yml │ ├── close-stale-issues.yml │ ├── cypress.yml │ ├── dependency-review.yml │ ├── dotorg-asset-readme-update.yml │ ├── dotorg-push-deploy.yml │ ├── lint.yml │ ├── test.yml │ └── wordpress-version-checker.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .wordpress-org ├── banner-1544x500.png ├── banner-772x250.png ├── blueprints │ └── blueprint.json ├── icon-128x128.png ├── icon-256x256.png ├── icon.svg └── screenshot-1.gif ├── .wordpress-version-checker.json ├── .wp-env.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── assets └── js │ └── editor │ ├── editor.js │ └── transform │ ├── ClassicBlockTransformer.js │ └── MigrationClient.js ├── babel.config.js ├── bin └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── config.php ├── convert-to-blocks.php ├── includes └── ConvertToBlocks │ ├── Assets.php │ ├── ClassicEditorSupport.php │ ├── MigrationAgent.php │ ├── MigrationCommand.php │ ├── Plugin.php │ ├── PostTypeColumnSupport.php │ ├── RESTSupport.php │ ├── ReverseMigrationSupport.php │ ├── RevisionSupport.php │ └── Settings.php ├── package.json ├── phpcs.xml ├── phpunit.xml ├── portkey.json ├── readme.txt ├── tests ├── ConvertToBlocks │ ├── AssetsTest.php │ ├── ClassicEditorSupportTest.php │ └── PluginTest.php ├── bin │ ├── initialize.sh │ ├── set-core-version.js │ └── wp-cli.yml ├── bootstrap.php └── cypress │ ├── config.js │ ├── e2e │ └── admin.test.js │ ├── fixtures │ ├── example.json │ └── sample-post.txt │ ├── support │ ├── commands.js │ └── e2e.js │ └── tsconfig.json └── webpack.config.js /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build-release-zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/build-release-zip.yml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/close-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/cypress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/cypress.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/dotorg-asset-readme-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/dotorg-asset-readme-update.yml -------------------------------------------------------------------------------- /.github/workflows/dotorg-push-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/dotorg-push-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wordpress-version-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.github/workflows/wordpress-version-checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/banner-1544x500.png -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/banner-772x250.png -------------------------------------------------------------------------------- /.wordpress-org/blueprints/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/blueprints/blueprint.json -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/icon.svg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-org/screenshot-1.gif -------------------------------------------------------------------------------- /.wordpress-version-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wordpress-version-checker.json -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/.wp-env.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/README.md -------------------------------------------------------------------------------- /assets/js/editor/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/assets/js/editor/editor.js -------------------------------------------------------------------------------- /assets/js/editor/transform/ClassicBlockTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/assets/js/editor/transform/ClassicBlockTransformer.js -------------------------------------------------------------------------------- /assets/js/editor/transform/MigrationClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/assets/js/editor/transform/MigrationClient.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/config.php -------------------------------------------------------------------------------- /convert-to-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/convert-to-blocks.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/Assets.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/ClassicEditorSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/ClassicEditorSupport.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/MigrationAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/MigrationAgent.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/MigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/MigrationCommand.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/Plugin.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/PostTypeColumnSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/PostTypeColumnSupport.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/RESTSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/RESTSupport.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/ReverseMigrationSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/ReverseMigrationSupport.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/RevisionSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/RevisionSupport.php -------------------------------------------------------------------------------- /includes/ConvertToBlocks/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/includes/ConvertToBlocks/Settings.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/phpunit.xml -------------------------------------------------------------------------------- /portkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/portkey.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/ConvertToBlocks/AssetsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/ConvertToBlocks/AssetsTest.php -------------------------------------------------------------------------------- /tests/ConvertToBlocks/ClassicEditorSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/ConvertToBlocks/ClassicEditorSupportTest.php -------------------------------------------------------------------------------- /tests/ConvertToBlocks/PluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/ConvertToBlocks/PluginTest.php -------------------------------------------------------------------------------- /tests/bin/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/bin/initialize.sh -------------------------------------------------------------------------------- /tests/bin/set-core-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/bin/set-core-version.js -------------------------------------------------------------------------------- /tests/bin/wp-cli.yml: -------------------------------------------------------------------------------- 1 | apache_modules: 2 | - mod_rewrite 3 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/cypress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/config.js -------------------------------------------------------------------------------- /tests/cypress/e2e/admin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/e2e/admin.test.js -------------------------------------------------------------------------------- /tests/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/fixtures/example.json -------------------------------------------------------------------------------- /tests/cypress/fixtures/sample-post.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/fixtures/sample-post.txt -------------------------------------------------------------------------------- /tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /tests/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/support/e2e.js -------------------------------------------------------------------------------- /tests/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/tests/cypress/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/convert-to-blocks/HEAD/webpack.config.js --------------------------------------------------------------------------------