1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
extern crate pulldown_cmark; extern crate dprint_core; #[macro_use] extern crate lazy_static; extern crate regex; pub mod configuration; mod format_text; mod parsing; pub use format_text::{format_text}; #[cfg(feature = "wasm")] #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] mod wasm_plugin; #[cfg(feature = "wasm")] #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] pub use wasm_plugin::*;