// This file is auto-generated by the build script // Please, do not modify it manually use super::test_markdown_html; #[test] fn gfm_strikethrough_test_1() { let original = r##"~~Hi~~ Hello, ~there~ world! "##; let expected = r##"

Hi Hello, there world!

"##; test_markdown_html(original, expected, false); } #[test] fn gfm_strikethrough_test_2() { let original = r##"This ~~has a new paragraph~~. "##; let expected = r##"

This ~~has a

new paragraph~~.

"##; test_markdown_html(original, expected, false); } #[test] fn gfm_strikethrough_test_3() { let original = r##"This will ~~~not~~~ strike. "##; let expected = r##"

This will ~~~not~~~ strike.

"##; test_markdown_html(original, expected, false); }