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

21 lines
439 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-24 17:02:04 +01:00
mod images;
2017-11-26 21:46:28 +00:00
mod static_files;
2017-12-21 18:50:55 +00:00
mod templating;
2017-09-06 19:42:46 +01:00
2017-12-21 18:50:55 +00:00
pub const PROCESSORS: [fn(Config, String) -> Result<String, String>; 7] =
2017-09-17 21:16:21 +01:00
[
head_cleanup::head_cleanup,
rebrand::rebrand,
references::references,
2017-09-24 17:02:04 +01:00
images::images,
2017-11-26 21:46:28 +00:00
static_files::static_files,
2017-09-17 21:16:21 +01:00
strip_blank::strip_blank,
2017-12-21 18:50:55 +00:00
templating::templating,
2017-09-17 21:16:21 +01:00
];