├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── .versionrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── codecov.yaml ├── jest.config.js ├── package.json ├── src ├── __tests__ │ ├── fixtures │ │ ├── content.md │ │ └── correct.html │ └── index.spec.ts └── index.ts ├── tsconfig.json └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | __tests__ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/.prettierrc -------------------------------------------------------------------------------- /.versionrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/.versionrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/codecov.yaml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/src/__tests__/fixtures/content.md -------------------------------------------------------------------------------- /src/__tests__/fixtures/correct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/src/__tests__/fixtures/correct.html -------------------------------------------------------------------------------- /src/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/src/__tests__/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/rehype-plugin-image-native-lazy-loading/HEAD/yarn.lock --------------------------------------------------------------------------------