august 2.4.0

A crate & program for converting HTML to plain text.
Documentation
1
2
3
4
5
6
7
8
use august;

#[test]
fn test_whitespace_collapse() {
    let input = " If I\n\n\nwere a\trich man";
    let output = "If I were a rich man";
    assert_eq!(output, august::convert(input, 80));
}