markdown2pdf

(★ 230)

A markdown to pdf transpiler in pure Rust

파일 탐색기

  • .gitignore
  • build.rs
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • dist-workspace.toml
  • LICENSE
  • README.md
  • rust-toolchain.toml
  • rustfmt.toml
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

brew install

설명 보기 ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

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 install

설명 보기 ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

markdown2pdf

설명 보기 ▼

markdown을 PDF로 변환.
더 많은 정보: <https://github.com/theiskaa/markdown2pdf>.

markdown2pdf {{[-p|--path]}} {{path/to/input_file.md}}

Markdown 파일을 PDF로 변환:

markdown2pdf {{[-p|--path]}} {{path/to/input_file.md}} {{[-o|--output]}} {{path/to/output_file.pdf}}

Markdown 파일을 지정한 경로의 PDF로 변환:

markdown2pdf {{[-s|--string]}} {{markdown_text}} {{[-o|--output]}} {{path/to/output_file.pdf}}

문자열 형태의 Markdown 내용을 PDF로 변환:

🔍

compact

설명 보기 ▼

NTFS 파티션의 파일 및 디렉터리 압축 상태를 확인하거나 변경.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/compact>.

compact

현재 디렉터리의 파일 압축 상태 표시:

compact /c {{path\to\file}}

지정한 파일 압축:

compact /u {{path\to\file}}

지정한 파일 압축 해제:

// repository documentation