aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html_text.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-09-26 16:12:25 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-09-26 16:12:25 +0200
commita0c84c505d733be2e987a333a34244c1befb56cb (patch)
tree0545a747b6f2f627a71bd31949ad622bbc56c176 /tests/html_text.rs
parent9cb9e37c33173c16cbafd345f43e43b5a550537d (diff)
downloadmarkdown-rs-a0c84c505d733be2e987a333a34244c1befb56cb.tar.gz
markdown-rs-a0c84c505d733be2e987a333a34244c1befb56cb.tar.bz2
markdown-rs-a0c84c505d733be2e987a333a34244c1befb56cb.zip
Add support for compiling to mdast
See: <https://github.com/syntax-tree/mdast>.
Diffstat (limited to '')
-rw-r--r--tests/html_text.rs38
1 files changed, 37 insertions, 1 deletions
diff --git a/tests/html_text.rs b/tests/html_text.rs
index 8fdbbd2..d35bdba 100644
--- a/tests/html_text.rs
+++ b/tests/html_text.rs
@@ -1,5 +1,8 @@
extern crate micromark;
-use micromark::{micromark, micromark_with_options, Constructs, Options};
+use micromark::{
+ mdast::{Html, Node, Paragraph, Position, Root, Text},
+ micromark, micromark_to_mdast, micromark_with_options, Constructs, Options,
+};
use pretty_assertions::assert_eq;
#[test]
@@ -433,5 +436,38 @@ micromark_with_options("<x> a", &danger)?,
"should support turning off html (text)"
);
+ assert_eq!(
+ micromark_to_mdast("alpha <i>bravo</b> charlie.", &Options::default())?,
+ Node::Root(Root {
+ children: vec![Node::Paragraph(Paragraph {
+ children: vec![
+ Node::Text(Text {
+ value: "alpha ".to_string(),
+ position: Some(Position::new(1, 1, 0, 1, 7, 6))
+ }),
+ Node::Html(Html {
+ value: "<i>".to_string(),
+ position: Some(Position::new(1, 7, 6, 1, 10, 9))
+ }),
+ Node::Text(Text {
+ value: "bravo".to_string(),
+ position: Some(Position::new(1, 10, 9, 1, 15, 14))
+ }),
+ Node::Html(Html {
+ value: "</b>".to_string(),
+ position: Some(Position::new(1, 15, 14, 1, 19, 18))
+ }),
+ Node::Text(Text {
+ value: " charlie.".to_string(),
+ position: Some(Position::new(1, 19, 18, 1, 28, 27))
+ })
+ ],
+ position: Some(Position::new(1, 1, 0, 1, 28, 27))
+ })],
+ position: Some(Position::new(1, 1, 0, 1, 28, 27))
+ }),
+ "should support HTML (text) as `Html`s in mdast"
+ );
+
Ok(())
}