3 个版本 (重大变更)

使用旧的 Rust 2015

0.3.0 2020年1月20日
0.2.0 2016年1月17日
0.1.0 2015年11月21日

#43#wrap

每月 29 次下载
phroxy 中使用

自定义许可

5KB
64

autolink

License

Rust 的 HTML 自动链接。

这是一个小的 Rust crate,将 Aaron Patterson 的 rails_autolink 部分移植过来,将纯文本中的 URL 包装成 <a> HTML 标签。

示例

  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)

依赖关系

~2–3MB
~53K SLoC