autolink 0.2.0

HTML auto-linking
Documentation

autolink

Crates.io Status 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.

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, true) == after)