gitextract_2mrqq2gl/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ ├── issue_template.md │ └── workflows/ │ ├── benchmark.yml │ ├── ci.yml │ ├── codeql.yml │ ├── dependabot-automerge.yml │ ├── lint.yml │ ├── site.yml │ └── sponsors.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── CONTRIBUTING.md ├── LICENSE ├── Readme.md ├── SECURITY.md ├── benchmark/ │ ├── benchmark.ts │ └── documents/ │ └── jquery.html ├── biome.json ├── eslint.config.js ├── package.json ├── scripts/ │ └── fetch-sponsors.mts ├── src/ │ ├── __fixtures__/ │ │ └── fixtures.ts │ ├── __tests__/ │ │ ├── deprecated.spec.ts │ │ └── xml.spec.ts │ ├── api/ │ │ ├── attributes.spec.ts │ │ ├── attributes.ts │ │ ├── css.spec.ts │ │ ├── css.ts │ │ ├── extract.spec.ts │ │ ├── extract.ts │ │ ├── forms.spec.ts │ │ ├── forms.ts │ │ ├── manipulation.spec.ts │ │ ├── manipulation.ts │ │ ├── traversing.spec.ts │ │ └── traversing.ts │ ├── cheerio.spec.ts │ ├── cheerio.ts │ ├── index-browser.mts │ ├── index.spec.ts │ ├── index.ts │ ├── load-parse.ts │ ├── load.spec.ts │ ├── load.ts │ ├── options.ts │ ├── parse.spec.ts │ ├── parse.ts │ ├── parsers/ │ │ └── parse5-adapter.ts │ ├── slim.ts │ ├── static.spec.ts │ ├── static.ts │ ├── types.ts │ ├── utils.spec.ts │ └── utils.ts ├── tsconfig.json ├── tsconfig.typedoc.json ├── vitest.config.ts └── website/ ├── README.md ├── astro.config.mjs ├── package.json ├── sponsors.json ├── src/ │ ├── components/ │ │ ├── Features.astro │ │ ├── Footer.astro │ │ ├── Hero.astro │ │ ├── LiveEditor.astro │ │ ├── Navbar.astro │ │ ├── Sidebar.astro │ │ ├── Sponsors.astro │ │ ├── TableOfContents.astro │ │ ├── Testimonials.astro │ │ └── live-code.tsx │ ├── content/ │ │ ├── blog/ │ │ │ ├── 2023-02-13-new-website.md │ │ │ └── 2024-08-07-version-1.md │ │ ├── config.ts │ │ └── docs/ │ │ ├── advanced/ │ │ │ ├── configuring-cheerio.md │ │ │ ├── extending-cheerio.md │ │ │ └── extract.md │ │ ├── basics/ │ │ │ ├── loading.md │ │ │ ├── manipulation.md │ │ │ ├── selecting.md │ │ │ └── traversing.mdx │ │ └── intro.md │ ├── env.d.ts │ ├── layouts/ │ │ ├── BaseLayout.astro │ │ ├── BlogLayout.astro │ │ └── DocsLayout.astro │ ├── pages/ │ │ ├── blog/ │ │ │ ├── [slug].astro │ │ │ ├── index.astro │ │ │ └── rss.xml.ts │ │ ├── docs/ │ │ │ ├── [slug].astro │ │ │ ├── advanced/ │ │ │ │ └── [slug].astro │ │ │ ├── api/ │ │ │ │ └── [...slug].astro │ │ │ └── basics/ │ │ │ └── [slug].astro │ │ └── index.astro │ ├── plugins/ │ │ ├── rehype-external-links.ts │ │ ├── remark-admonitions.ts │ │ ├── remark-fix-typedoc-links.ts │ │ └── remark-live-code.ts │ └── styles/ │ └── global.css ├── tsconfig.json └── typedoc.json