├── .eleventy.js ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── actions │ ├── example-build │ │ └── action.yml │ ├── lint │ │ └── action.yml │ ├── publint │ │ └── action.yml │ ├── setup │ │ └── action.yml │ └── test │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── release.yml │ └── review.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .releaserc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── og-image.png ├── example ├── .eleventy.js ├── example-draft.njk ├── example-page.njk └── og-image.og.njk ├── index.d.ts ├── package.json ├── src ├── OgImage.js └── utils │ ├── index.js │ ├── mergeOptions.js │ └── sortObject.js └── test ├── OgImage.test.js ├── mergeOptions.test.js ├── og-test.og.njk ├── snapshots ├── OgImage.test.js.md └── OgImage.test.js.snap ├── sortObject.test.js └── utils ├── directoriesConfig.js └── testConstructor.js /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | !.eleventy.js 2 | index.d.ts 3 | .eslintrc.cjs 4 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/actions/example-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/actions/example-build/action.yml -------------------------------------------------------------------------------- /.github/actions/lint/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/actions/lint/action.yml -------------------------------------------------------------------------------- /.github/actions/publint/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/actions/publint/action.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/actions/test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/actions/test/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.github/workflows/review.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24.11.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Build results 2 | /example/_site/ -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/README.md -------------------------------------------------------------------------------- /assets/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/assets/og-image.png -------------------------------------------------------------------------------- /example/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/example/.eleventy.js -------------------------------------------------------------------------------- /example/example-draft.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/example/example-draft.njk -------------------------------------------------------------------------------- /example/example-page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/example/example-page.njk -------------------------------------------------------------------------------- /example/og-image.og.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/example/og-image.og.njk -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/package.json -------------------------------------------------------------------------------- /src/OgImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/src/OgImage.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/mergeOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/src/utils/mergeOptions.js -------------------------------------------------------------------------------- /src/utils/sortObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/src/utils/sortObject.js -------------------------------------------------------------------------------- /test/OgImage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/OgImage.test.js -------------------------------------------------------------------------------- /test/mergeOptions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/mergeOptions.test.js -------------------------------------------------------------------------------- /test/og-test.og.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/og-test.og.njk -------------------------------------------------------------------------------- /test/snapshots/OgImage.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/snapshots/OgImage.test.js.md -------------------------------------------------------------------------------- /test/snapshots/OgImage.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/snapshots/OgImage.test.js.snap -------------------------------------------------------------------------------- /test/sortObject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/sortObject.test.js -------------------------------------------------------------------------------- /test/utils/directoriesConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/utils/directoriesConfig.js -------------------------------------------------------------------------------- /test/utils/testConstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiwiKilian/eleventy-plugin-og-image/HEAD/test/utils/testConstructor.js --------------------------------------------------------------------------------