CLI Reference
edgeparse [OPTIONS] <FILE>...Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
<FILE>... | One or more PDF files to process |
Options
Section titled “Options”| Flag | Short | Default | Description |
|---|---|---|---|
--format <FMT> | -f | markdown | Output format: json, markdown, html, text |
--output-dir <DIR> | -o | stdout | Write output to directory |
--pages <RANGE> | all | Page range, e.g. 1-5 | |
--hybrid <BACKEND> | none | Enable hybrid mode | |
--help | -h | Show help | |
--version | -V | Show version |
Examples
Section titled “Examples”# Parse to JSONedgeparse report.pdf -f json
# Parse to Markdown, save to fileedgeparse report.pdf -f markdown -o output/
# Process page rangeedgeparse report.pdf -f json --pages 1-10
# Batch processedgeparse ./pdfs/*.pdf -f markdown -o results/
# Hybrid modeedgeparse report.pdf -f json --hybrid docling-fastInstallation
Section titled “Installation”# From crates.iocargo install edgeparse-cli
# From sourcegit clone https://github.com/raphaelmansuy/edgeparse.gitcd edgeparsecargo install --path crates/edgeparse-cli