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
Raw Normal View History

2017-09-06 19:42:46 +01:00
use config::Config;
2017-09-06 20:07:06 +01:00
mod head_cleanup;
mod strip_blank;
mod rebrand;
2017-09-06 19:42:46 +01:00
2017-09-06 20:07:06 +01:00
pub const PROCESSORS: [fn(Config, String) -> Result<String, String>; 3] =
[head_cleanup::head_cleanup, rebrand::rebrand, strip_blank::strip_blank];