gitextract_alta88pg/ ├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── build-release-zip.yml │ ├── close-stale-issues.yml │ ├── cypress.yml │ ├── dependency-review.yml │ ├── php-compatibility.yml │ ├── phpcs.yml │ ├── phpunit.yml │ ├── push-asset-readme-update.yml │ ├── push-deploy.yml │ ├── repo-automator.yml │ └── wordpress-version-checker.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .nvmrc ├── .phpcs.xml.dist ├── .prettierrc ├── .wordpress-org/ │ └── blueprints/ │ └── blueprint.json ├── .wordpress-version-checker.json ├── .wp-env.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── assets/ │ ├── css/ │ │ ├── podcasting-edit-term.css │ │ ├── podcasting-editor-screen.css │ │ ├── podcasting-onboarding.scss │ │ └── podcasting-transcript.css │ └── js/ │ ├── blocks/ │ │ ├── latest-episode/ │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── podcast/ │ │ │ ├── index.js │ │ │ └── index.scss │ │ └── podcast-platforms/ │ │ ├── edit.js │ │ ├── index.js │ │ └── index.scss │ ├── blocks.js │ ├── create-podcast-show.js │ ├── deprecated.js │ ├── edit.js │ ├── onboarding.js │ ├── podcasting-edit-post.js │ ├── podcasting-edit-term.js │ └── transforms.js ├── composer.json ├── includes/ │ ├── admin/ │ │ ├── create-podcast-component.php │ │ ├── onboarding.php │ │ └── views/ │ │ ├── onboarding-header.php │ │ ├── onboarding-page-one.php │ │ └── onboarding-page-two.php │ ├── block-patterns.php │ ├── blocks/ │ │ ├── podcast/ │ │ │ └── markup.php │ │ └── podcast-transcript/ │ │ ├── cite.js │ │ ├── edit.js │ │ ├── formats.js │ │ ├── index.js │ │ ├── markup.php │ │ ├── styles.css │ │ └── time.js │ ├── blocks.php │ ├── create-podcast.php │ ├── customize-feed.php │ ├── datatypes.php │ ├── helpers.php │ ├── post-meta-box.php │ ├── rest-external-url.php │ ├── transcripts.php │ └── upgrade.php ├── package.json ├── phpunit.xml.dist ├── readme.txt ├── simple-podcasting.php ├── templates/ │ └── transcript.php ├── tests/ │ ├── bin/ │ │ └── set-wp-config.js │ ├── cypress/ │ │ ├── .eslintrc │ │ ├── config.config.js │ │ ├── fixtures/ │ │ │ └── example.json │ │ ├── integration/ │ │ │ ├── admin.test.js │ │ │ ├── block.test.js │ │ │ ├── onboarding.test.js │ │ │ ├── podcast-setting-panel.test.js │ │ │ └── taxonomy.test.js │ │ ├── plugins/ │ │ │ └── index.js │ │ ├── support/ │ │ │ ├── functions.js │ │ │ └── index.js │ │ └── tsconfig.json │ └── unit/ │ ├── bootstrap.php │ ├── test-blocks.php │ ├── test-customize-feed.php │ ├── test-datatypes.php │ ├── test-helpers.php │ ├── test-rest-external-url.php │ └── test-transcript.php └── webpack.config.js