├── .github └── workflows │ ├── ci.yml │ ├── deps.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api-extractor.json ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts └── preflights │ ├── default.ts │ └── index.ts ├── tests ├── __snapshots__ │ ├── prose-attribute-custom.css.snap │ ├── prose-attribute.css.snap │ ├── prose-class-custom.css.snap │ ├── prose-class.css.snap │ └── prose-custom-css.css.snap ├── index.spec.js └── utils.js ├── tsconfig.json └── vite.config.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/.github/workflows/deps.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | temp 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/README.md -------------------------------------------------------------------------------- /api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/api-extractor.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/preflights/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/src/preflights/default.ts -------------------------------------------------------------------------------- /src/preflights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/src/preflights/index.ts -------------------------------------------------------------------------------- /tests/__snapshots__/prose-attribute-custom.css.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/__snapshots__/prose-attribute-custom.css.snap -------------------------------------------------------------------------------- /tests/__snapshots__/prose-attribute.css.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/__snapshots__/prose-attribute.css.snap -------------------------------------------------------------------------------- /tests/__snapshots__/prose-class-custom.css.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/__snapshots__/prose-class-custom.css.snap -------------------------------------------------------------------------------- /tests/__snapshots__/prose-class.css.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/__snapshots__/prose-class.css.snap -------------------------------------------------------------------------------- /tests/__snapshots__/prose-custom-css.css.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/__snapshots__/prose-custom-css.css.snap -------------------------------------------------------------------------------- /tests/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/index.spec.js -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tests/utils.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydcjeff/unocss-preset-typography/HEAD/vite.config.ts --------------------------------------------------------------------------------