archive
/
md-pdf-rs
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf-rs/src/processors/mod.rs

10 lines
223 B
Rust

use config::Config;
mod head_cleanup;
mod strip_blank;
mod rebrand;
pub const PROCESSORS: [fn(Config, String) -> Result<String, String>; 3] =
[head_cleanup::head_cleanup, rebrand::rebrand, strip_blank::strip_blank];