├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── deploy-playground.yml │ ├── pr-checks.yml │ └── update-tags-post-release.yml ├── .gitignore ├── .prettierignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js ├── index.js.map ├── licenses.txt ├── package.json └── sourcemap-register.cjs ├── images ├── dialogue.png ├── dialogue_dark.png ├── example_comment.png ├── example_comment_dark.png ├── logo_b&w.png └── logo_b&w_dark.png ├── package.json ├── playground ├── .gitignore ├── index.html ├── public │ └── icon.png ├── src │ ├── App.vue │ ├── components │ │ └── SingleScore.vue │ ├── default-text.ts │ ├── github-logo.png │ ├── main.ts │ ├── metric-descriptions.ts │ ├── style.css │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── src ├── cli │ ├── debug-file.ts │ └── report.ts ├── constants.ts ├── github.ts ├── index.ts ├── markdown.test.ts ├── markdown.ts ├── readability-files.test.ts ├── readability-files.ts ├── readability.test.ts ├── readability.ts ├── report.test.ts └── report.ts ├── test-data ├── new │ ├── new-test-document.md │ └── test-document.md └── old │ └── test-document.md ├── tsconfig.json ├── typings └── text-readability │ └── index.d.ts ├── vite.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-playground.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.github/workflows/deploy-playground.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/update-tags-post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.github/workflows/update-tags-post-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | test-data/ 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /dist/sourcemap-register.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/dist/sourcemap-register.cjs -------------------------------------------------------------------------------- /images/dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/images/dialogue.png -------------------------------------------------------------------------------- /images/dialogue_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/images/dialogue_dark.png -------------------------------------------------------------------------------- /images/example_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/images/example_comment.png -------------------------------------------------------------------------------- /images/example_comment_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/images/example_comment_dark.png -------------------------------------------------------------------------------- /images/logo_b&w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/images/logo_b&w.png -------------------------------------------------------------------------------- /images/logo_b&w_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/images/logo_b&w_dark.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/package.json -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/public/icon.png -------------------------------------------------------------------------------- /playground/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/App.vue -------------------------------------------------------------------------------- /playground/src/components/SingleScore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/components/SingleScore.vue -------------------------------------------------------------------------------- /playground/src/default-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/default-text.ts -------------------------------------------------------------------------------- /playground/src/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/github-logo.png -------------------------------------------------------------------------------- /playground/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/main.ts -------------------------------------------------------------------------------- /playground/src/metric-descriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/metric-descriptions.ts -------------------------------------------------------------------------------- /playground/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/src/style.css -------------------------------------------------------------------------------- /playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/tsconfig.node.json -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /src/cli/debug-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/cli/debug-file.ts -------------------------------------------------------------------------------- /src/cli/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/cli/report.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/github.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/markdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/markdown.test.ts -------------------------------------------------------------------------------- /src/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/markdown.ts -------------------------------------------------------------------------------- /src/readability-files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/readability-files.test.ts -------------------------------------------------------------------------------- /src/readability-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/readability-files.ts -------------------------------------------------------------------------------- /src/readability.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/readability.test.ts -------------------------------------------------------------------------------- /src/readability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/readability.ts -------------------------------------------------------------------------------- /src/report.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/report.test.ts -------------------------------------------------------------------------------- /src/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/src/report.ts -------------------------------------------------------------------------------- /test-data/new/new-test-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/test-data/new/new-test-document.md -------------------------------------------------------------------------------- /test-data/new/test-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/test-data/new/test-document.md -------------------------------------------------------------------------------- /test-data/old/test-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/test-data/old/test-document.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/text-readability/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/typings/text-readability/index.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebilly/lexi/HEAD/yarn.lock --------------------------------------------------------------------------------