11 releases (6 breaking)

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

#1598 in Web programming

Download history 474/week @ 2024-07-30 564/week @ 2024-08-06 461/week @ 2024-08-13 587/week @ 2024-08-20 423/week @ 2024-08-27 509/week @ 2024-09-03 630/week @ 2024-09-10 539/week @ 2024-09-17 578/week @ 2024-09-24 384/week @ 2024-10-01 849/week @ 2024-10-08 592/week @ 2024-10-15 762/week @ 2024-10-22 950/week @ 2024-10-29 602/week @ 2024-11-05 561/week @ 2024-11-12

2,947 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
~89K SLoC