//! This little command line program illustrates how to use this
//! library. It extracts all Markdown and RestructuredText
//! hyperlinks found in the input stream `stdin` and
//! prints the list as HTML.
use take_hyperlink;
use io;
use Read;
/// Minimal application that prints all Markdown and
/// RestructuredText links in `stdin`as HTML to `stdout`.