Skip to content

CLI Reference

Terminal window
edgeparse [OPTIONS] <FILE>...
ArgumentDescription
<FILE>...One or more PDF files to process
FlagShortDefaultDescription
--format <FMT>-fmarkdownOutput format: json, markdown, html, text
--output-dir <DIR>-ostdoutWrite output to directory
--pages <RANGE>allPage range, e.g. 1-5
--hybrid <BACKEND>noneEnable hybrid mode
--help-hShow help
--version-VShow version
Terminal window
# Parse to JSON
edgeparse report.pdf -f json
# Parse to Markdown, save to file
edgeparse report.pdf -f markdown -o output/
# Process page range
edgeparse report.pdf -f json --pages 1-10
# Batch process
edgeparse ./pdfs/*.pdf -f markdown -o results/
# Hybrid mode
edgeparse report.pdf -f json --hybrid docling-fast
Terminal window
# From crates.io
cargo install edgeparse-cli
# From source
git clone https://github.com/raphaelmansuy/edgeparse.git
cd edgeparse
cargo install --path crates/edgeparse-cli