v_htmlescape 0.15.8

The simd optimized HTML escaping code
Documentation
1
2
3
4
5
6
7
8
9
# v_htmlescape [![Documentation]https://docs.rs/v_htmlescape/badge.svg]https://docs.rs/v_htmlescape/ [![Latest version]https://img.shields.io/crates/v/v_htmlescape.svg]https://crates.io/crates/v_htmlescape
> The simd optimized html escape code
# Quick start
 
```rust
use v_htmlescape::escape;

print!("{}", escape("foo<bar"));
```