Skip to main content

cp_parser/
lib.rs

1//! CP Parser - Document parsing for Canon Protocol
2//!
3//! Supports:
4//! - PDF (text extraction)
5//! - Markdown
6//! - Plain text
7
8mod chunker;
9mod parsers;
10
11pub use chunker::{ChunkConfig, Chunker};
12pub use parsers::{parse_file, Parser, ParserRegistry};