diff --git a/tests/html.rs b/tests/html.rs index fb2d423..ec8484c 100644 --- a/tests/html.rs +++ b/tests/html.rs @@ -32,3 +32,25 @@ _Section 2_ ) ) } + +#[test] +fn list() { + parse_assert!( + r#"+ 1 + ++ 2 + + - 3 + + - 4 + ++ 5"#, + concat!( + "
" + ) + ) +}