mark-it-down
Convert any web page to clean Markdown
File Explorer
- ci.yml
- web-to-markdown.ts
- icon128.png
- icon16.png
- icon48.png
- copy-static.js
- convert.ts
- converter.ts
- extractor.ts
- mdx-extractor.ts
- popup.ts
- types.ts
- .gitignore
- manifest.json
- package-lock.json
- package.json
- popup.css
- popup.html
- promo-tile-440x280.png
- screenshot-1280x800.png
- screenshot-kubernetes-1280x800.png
- screenshot-react-1280x800.png
- tsconfig.json
- tsup.config.ts
- web-to-markdown.zip
- privacy.html
- cli.ts
- converter.ts
- errors.ts
- extractor.ts
- fetcher.ts
- index.ts
- mdx-extractor.ts
- ssrf.ts
- turndown-plugin-gfm.d.ts
- types.ts
- converter.test.ts
- extractor.test.ts
- index.test.ts
- mdx-extractor.test.ts
- ssrf.test.ts
- .editorconfig
- .gitignore
- .nvmrc
- .prettierrc
- eslint.config.js
- LICENSE
- package-lock.json
- package.json
- README.md
- tsconfig.json
- tsup.config.ts
- vitest.config.ts
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
eval
View Details ▼
eval
Execute arguments as a single command in the current shell and return its result.
eval "{{echo foo}}"
Call `echo` with the "foo" argument:
eval "{{foo=bar}}"
Set a variable in the current shell:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
