You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
502B

  1. #[macro_use]
  2. extern crate lazy_static;
  3. extern crate regex;
  4. extern crate tera;
  5. extern crate syntect;
  6. extern crate pulldown_cmark;
  7. extern crate slug;
  8. #[macro_use]
  9. extern crate serde_derive;
  10. extern crate serde;
  11. extern crate errors;
  12. extern crate front_matter;
  13. extern crate utils;
  14. #[cfg(test)]
  15. extern crate templates;
  16. mod context;
  17. pub mod highlighting;
  18. mod markdown;
  19. mod short_code;
  20. mod table_of_contents;
  21. pub use context::Context;
  22. pub use markdown::markdown_to_html;
  23. pub use table_of_contents::Header;