voca_rs icon indicating copy to clipboard operation
voca_rs copied to clipboard

Voca_rs is the ultimate Rust [unicode] string library, implemented as independent functions and on Foreign Types (String and str).

Results 3 voca_rs issues
Sort by recently updated
recently updated
newest added

I didn't see anything at a glance, but wanted to check if there's any support to encode/decode URIs with this library. I know some other Rust libraries exist that do...

enhancement

`\src\escape.rs` - escape::escape_html Check for optimizations: https://lise-henry.github.io/articles/optimising_strings.html

enhancement

Long story short: ```rust fn main() { assert_eq!(voca_rs::strip::strip_tags("\u{200D}after"), "after"); } ``` Leads to ``` thread 'main' panicked at src/main.rs:2:5: assertion `left == right` failed left: "" right: "after" note: run...

bug