// This file is auto-generated by the build script
// Please, do not modify it manually
use super::test_markdown_html;
#[test]
fn strikethrough_test_1() {
let original = r##"~~This is *stricken out*~~
"##;
let expected = r##"
This is stricken out
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_2() {
let original = r##"~~This is \~\~stricken~~
"##;
let expected = r##"This is ~~stricken
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_3() {
let original = r##"This~~is~~stricken
"##;
let expected = r##"Thisisstricken
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_4() {
let original = r##"~~This~~is~~stricken~~
"##;
let expected = r##"Thisisstricken
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_5() {
let original = r##"Here I strike out an exclamation point~~!~~.
"##;
let expected = r##"Here I strike out an exclamation point!.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_6() {
let original = r##"~This is stricken out~
"##;
let expected = r##"This is stricken out
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_7() {
let original = r##"~This is \~stricken~
"##;
let expected = r##"This is ~stricken
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_8() {
let original = r##"This~is~nothing
"##;
let expected = r##"This~is~nothing
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_9() {
let original = r##"~This~is~nothing~
"##;
let expected = r##"This~is~nothing
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_10() {
let original = r##"Here I fail to strike out an exclamation point~!~.
"##;
let expected = r##"Here I fail to strike out an exclamation point~!~.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_11() {
let original = r##"Here I fail to strike out a tilde ~~~.
"##;
let expected = r##"Here I fail to strike out a tilde ~~~.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_12() {
let original = r##"Here I fail to match up ~~tildes~.
"##;
let expected = r##"Here I fail to match up ~~tildes~.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_13() {
let original = r##"Here I fail to match up ~tildes~~.
"##;
let expected = r##"Here I fail to match up ~tildes~~.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_14() {
let original = r##"~~This ~is stricken.~~
"##;
let expected = r##"This ~is stricken.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_15() {
let original = r##"~This ~~is stricken.~
"##;
let expected = r##"This ~~is stricken.
"##;
test_markdown_html(original, expected, false, false, false);
}
#[test]
fn strikethrough_test_16() {
let original = r##"~This ~~is stricken~ but this is not~~
"##;
let expected = r##"This ~~is stricken but this is not~~
"##;
test_markdown_html(original, expected, false, false, false);
}