cf-file-parser 0.1.20

File Parser module
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod docx_parser;
pub mod html_parser;
pub mod image_parser;
pub mod pdf_parser;
pub mod plain_text;
pub mod pptx_parser;
pub mod stub;
pub mod xlsx_parser;

pub use docx_parser::DocxParser;
pub use html_parser::HtmlParser;
pub use image_parser::ImageParser;
pub use pdf_parser::PdfParser;
pub use plain_text::PlainTextParser;
pub use pptx_parser::PptxParser;
pub use stub::StubParser;
pub use xlsx_parser::XlsxParser;