1 2 3 4 5 6 7 8 9 10
//! A *scanner* is just a function that which can extract links from a body of //! text. mod markdown; mod plaintext; pub use markdown::{ markdown, markdown_with_broken_link_callback, BrokenLinkCallback, }; pub use plaintext::plaintext;