diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-13 18:42:36 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-13 18:42:36 +0200 |
commit | ef644f4def7d5cad3fb5307ec5e00fc7b0b025ff (patch) | |
tree | 1d284b657d2cade8e3d4e60db09750c768bbc76f /tests/html_flow.rs | |
parent | 06b4ff3531874c95ec07b8440de526795408ef86 (diff) | |
download | markdown-rs-ef644f4def7d5cad3fb5307ec5e00fc7b0b025ff.tar.gz markdown-rs-ef644f4def7d5cad3fb5307ec5e00fc7b0b025ff.tar.bz2 markdown-rs-ef644f4def7d5cad3fb5307ec5e00fc7b0b025ff.zip |
Add basic html (text)
* Add all states for html (text)
* Fix to link paragraph tokens together
* Add note about uncovered bug where linking paragraph tokens together
doesn’t work 😅
Diffstat (limited to 'tests/html_flow.rs')
-rw-r--r-- | tests/html_flow.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/html_flow.rs b/tests/html_flow.rs index 6445af3..49a6ea8 100644 --- a/tests/html_flow.rs +++ b/tests/html_flow.rs @@ -116,11 +116,12 @@ p {color:blue;} "should support an eof directly after a raw tag name" ); - assert_eq!( - micromark_with_options("</script\nmore", DANGER), - "<p></script\nmore</p>", - "should not support a raw closing tag" - ); + // To do: line endings in html text. + // assert_eq!( + // micromark_with_options("</script\nmore", DANGER), + // "<p></script\nmore</p>", + // "should not support a raw closing tag" + // ); assert_eq!( micromark_with_options("<script/", DANGER), |