11 releases (6 breaking)

new 0.8.1 Jun 2, 2024
0.8.0 Sep 9, 2023
0.7.0 Jan 7, 2020
0.6.0 Oct 20, 2019
0.2.0 Dec 12, 2017

#1 in #predefined

Download history 346/week @ 2024-02-14 289/week @ 2024-02-21 391/week @ 2024-02-28 289/week @ 2024-03-06 181/week @ 2024-03-13 209/week @ 2024-03-20 360/week @ 2024-03-27 433/week @ 2024-04-03 489/week @ 2024-04-10 537/week @ 2024-04-17 562/week @ 2024-04-24 251/week @ 2024-05-01 409/week @ 2024-05-08 443/week @ 2024-05-15 566/week @ 2024-05-22 480/week @ 2024-05-29

1,948 downloads per month
Used in localapp

MIT license

45KB
1K SLoC

Sanitize HTML

Crates.io Status Build codecov dependency status

This is a library for sanitization of HTML fragments.


lib.rs:

HTML Sanitization library

Examples

use sanitize_html::sanitize_str;
use sanitize_html::rules::predefined::DEFAULT;

let input = "<b>Lo<!-- comment -->rem</b> <a href=\"pants\" title=\"foo\">ipsum</a> <a href=\"http://foo.com/\"><strong>dolor</strong></a> sit<br/>amet <script>alert(\"hello world\");</script>";

let sanitized_default: String = sanitize_str(&DEFAULT, input).unwrap();
assert_eq!(&sanitized_default, "Lorem ipsum dolor sit amet ");

Dependencies

~3.5–10MB
~87K SLoC