html-helpers 0.0.5

A collection of high-level utilities for cleaning, transforming, and converting HTML content.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# html-helpers

**A collection of high-level utilities for cleaning, transforming, and converting HTML content.**

> ⚠️ Very early release – currently supports only HTML slimming.

## Example

```rust
let content: String = /* full HTML page */;

let slim_content = html_helpers::slim(&content)?;
```