gitextract_631fmifc/ ├── .github/ │ └── workflows/ │ ├── publish-npm.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── README.md ├── _config.yml ├── examples/ │ └── simple/ │ ├── main.js │ └── package.json ├── fixtures/ │ ├── file-1-no-toc.epub │ ├── file-1.epub │ ├── file-2.epub │ ├── file-3.epub │ ├── file-4.epub │ ├── file-e.epub │ ├── wells.epub │ └── zhihu.epub ├── jest.config.js ├── package.json ├── src/ │ ├── index.ts │ ├── mdConverters.ts │ ├── parseEpub.spec.ts │ ├── parseEpub.ts │ ├── parseHTML.spec.ts │ ├── parseHTML.ts │ ├── parseLink.ts │ ├── parseSection.ts │ ├── types.ts │ └── utils.ts ├── tsconfig.json └── tslint.json