august 2.4.0

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

#[test]
fn test_single_col_w_colspan() {
    let input = "<table>
	<tr><th colspan='2'>A</th></tr>
	<tr><td colspan='2'>B</td></tr>
</table>";
    let output = "A\nB";
    assert_eq!(output, august::convert(input, 80));
}