├── .eslintignore ├── .github ├── dependabot.yml └── workflows │ ├── on-dependabot.yml │ ├── on-push.yml │ └── on-release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-interactive-tools.cjs └── releases │ └── yarn-2.3.3.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── README.md ├── index.js ├── package.json ├── test ├── fixtures │ ├── all.md │ ├── flat-oembed.md │ ├── photo-oembed.md │ ├── providers.md │ └── rich-oembed.md ├── index.js ├── outputs │ ├── async-img-all.html │ ├── async-img-all.png │ ├── async-img-flat-oembed.html │ ├── async-img-flat-oembed.png │ ├── async-img-photo-oembed.html │ ├── async-img-photo-oembed.png │ ├── async-img-providers.html │ ├── async-img-providers.png │ ├── async-img-rich-oembed.html │ ├── async-img-rich-oembed.png │ ├── defaults-all.html │ ├── defaults-all.png │ ├── defaults-flat-oembed.html │ ├── defaults-flat-oembed.png │ ├── defaults-photo-oembed.html │ ├── defaults-photo-oembed.png │ ├── defaults-providers.html │ ├── defaults-providers.png │ ├── defaults-rich-oembed.html │ ├── defaults-rich-oembed.png │ ├── jsx-all.html │ ├── jsx-all.png │ ├── jsx-async-img-all.html │ ├── jsx-async-img-all.png │ ├── jsx-sync-widget-all.html │ ├── jsx-sync-widget-all.png │ ├── sync-widget-all.html │ ├── sync-widget-all.png │ ├── sync-widget-flat-oembed.html │ ├── sync-widget-flat-oembed.png │ ├── sync-widget-photo-oembed.html │ ├── sync-widget-photo-oembed.png │ ├── sync-widget-providers.html │ ├── sync-widget-providers.png │ ├── sync-widget-rich-oembed.html │ └── sync-widget-rich-oembed.png └── snapshots │ ├── index.js.md │ └── index.js.snap └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.github/workflows/on-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.github/workflows/on-push.yml -------------------------------------------------------------------------------- /.github/workflows/on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.github/workflows/on-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-2.3.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.yarn/releases/yarn-2.3.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/fixtures/all.md -------------------------------------------------------------------------------- /test/fixtures/flat-oembed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/fixtures/flat-oembed.md -------------------------------------------------------------------------------- /test/fixtures/photo-oembed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/fixtures/photo-oembed.md -------------------------------------------------------------------------------- /test/fixtures/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/fixtures/providers.md -------------------------------------------------------------------------------- /test/fixtures/rich-oembed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/fixtures/rich-oembed.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/index.js -------------------------------------------------------------------------------- /test/outputs/async-img-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-all.html -------------------------------------------------------------------------------- /test/outputs/async-img-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-all.png -------------------------------------------------------------------------------- /test/outputs/async-img-flat-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-flat-oembed.html -------------------------------------------------------------------------------- /test/outputs/async-img-flat-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-flat-oembed.png -------------------------------------------------------------------------------- /test/outputs/async-img-photo-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-photo-oembed.html -------------------------------------------------------------------------------- /test/outputs/async-img-photo-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-photo-oembed.png -------------------------------------------------------------------------------- /test/outputs/async-img-providers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-providers.html -------------------------------------------------------------------------------- /test/outputs/async-img-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-providers.png -------------------------------------------------------------------------------- /test/outputs/async-img-rich-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-rich-oembed.html -------------------------------------------------------------------------------- /test/outputs/async-img-rich-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/async-img-rich-oembed.png -------------------------------------------------------------------------------- /test/outputs/defaults-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-all.html -------------------------------------------------------------------------------- /test/outputs/defaults-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-all.png -------------------------------------------------------------------------------- /test/outputs/defaults-flat-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-flat-oembed.html -------------------------------------------------------------------------------- /test/outputs/defaults-flat-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-flat-oembed.png -------------------------------------------------------------------------------- /test/outputs/defaults-photo-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-photo-oembed.html -------------------------------------------------------------------------------- /test/outputs/defaults-photo-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-photo-oembed.png -------------------------------------------------------------------------------- /test/outputs/defaults-providers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-providers.html -------------------------------------------------------------------------------- /test/outputs/defaults-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-providers.png -------------------------------------------------------------------------------- /test/outputs/defaults-rich-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-rich-oembed.html -------------------------------------------------------------------------------- /test/outputs/defaults-rich-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/defaults-rich-oembed.png -------------------------------------------------------------------------------- /test/outputs/jsx-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/jsx-all.html -------------------------------------------------------------------------------- /test/outputs/jsx-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/jsx-all.png -------------------------------------------------------------------------------- /test/outputs/jsx-async-img-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/jsx-async-img-all.html -------------------------------------------------------------------------------- /test/outputs/jsx-async-img-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/jsx-async-img-all.png -------------------------------------------------------------------------------- /test/outputs/jsx-sync-widget-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/jsx-sync-widget-all.html -------------------------------------------------------------------------------- /test/outputs/jsx-sync-widget-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/jsx-sync-widget-all.png -------------------------------------------------------------------------------- /test/outputs/sync-widget-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-all.html -------------------------------------------------------------------------------- /test/outputs/sync-widget-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-all.png -------------------------------------------------------------------------------- /test/outputs/sync-widget-flat-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-flat-oembed.html -------------------------------------------------------------------------------- /test/outputs/sync-widget-flat-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-flat-oembed.png -------------------------------------------------------------------------------- /test/outputs/sync-widget-photo-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-photo-oembed.html -------------------------------------------------------------------------------- /test/outputs/sync-widget-photo-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-photo-oembed.png -------------------------------------------------------------------------------- /test/outputs/sync-widget-providers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-providers.html -------------------------------------------------------------------------------- /test/outputs/sync-widget-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-providers.png -------------------------------------------------------------------------------- /test/outputs/sync-widget-rich-oembed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-rich-oembed.html -------------------------------------------------------------------------------- /test/outputs/sync-widget-rich-oembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/outputs/sync-widget-rich-oembed.png -------------------------------------------------------------------------------- /test/snapshots/index.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/snapshots/index.js.md -------------------------------------------------------------------------------- /test/snapshots/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/test/snapshots/index.js.snap -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/remark-oembed/HEAD/yarn.lock --------------------------------------------------------------------------------