autolink
========
[](https://crates.io/crates/autolink)
[](https://git.cypr.io/oz/autolink-rust/raw/master/LICENSE)
> HTML auto-linking for Rust.
This is a small Rust crate, porting parts of Aaron Patterson's
[rails_autolink], to wrap URLs in raw text into `<a>` HTML tags.
[rails_autolink]: https://github.com/tenderlove/rails_autolink
# Examples
```
use autolink::autolink;
let before = "Share code on https://crates.io";
let after = "Share code on <a href=\"https://crates.io\" target=\"_blank\">https://crates.io</a>";
assert!(autolink(before, &vec!["target=\"_blank\""]) == after)
```