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
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-17 21:16:21 +01:00
mod references;
2017-09-06 19:42:46 +01:00
2017-09-17 21:16:21 +01:00
pub const PROCESSORS: [fn(Config, String) -> Result<String, String>; 4] =
[
head_cleanup::head_cleanup,
rebrand::rebrand,
references::references,
strip_blank::strip_blank,
];