anydoc

(★ 17,722)

Word, PowerPoint, Excel, OpenDocument, RTF, EPUB, CSV, 그리고 PDF 파일을 깔끔한 Markdown으로 변환하세요. Rust로 제작되었으며, Node.js와 Python 바인딩을 제공합니다.

파일 탐색기

  • .gitattributes
  • .gitignore
  • Cargo.lock
  • Cargo.toml
  • LICENSE
  • README.md
  • rustfmt.toml

# 설치 가이드

rust
사전 준비물

설치 및 실행 절차

cargo build --release

Rust 프로젝트를 빌드합니다.

cargo test

테스트를 실행합니다.

npx skills add firecrawl/anydoc

에이전트 스킬을 추가합니다.

핵심 명령어

cargo build --release

프로젝트를 컴파일하고 빌드합니다.

cargo test

모든 단위 테스트와 통합 테스트를 실행합니다.

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cargo add

설명 보기 ▼

Add dependencies to a Rust project's `Cargo.toml` manifest.

cargo add {{dependency}}

Add the latest version of a dependency to the current project:

cargo add {{dependency}}@{{version}}

Add a specific version of a dependency:

cargo add {{dependency}} {{[-F|--features]}} {{feature_1,feature_2,...}}

Add a dependency and enable one or more specific features:

🔍

cargo test

설명 보기 ▼

Execute the unit and integration tests of a Rust package.

cargo {{[t|test]}} {{test_name}}

Only run tests containing a specific string in their names:

cargo {{[t|test]}} -- --test-threads {{count}}

Set the number of simultaneous running test cases:

cargo {{[t|test]}} {{[-r|--release]}}

Test artifacts in release mode, with optimizations:

🔍

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

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

# 프로젝트 배지

// repository documentation