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

16 lines
302 B
Rust

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