1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
extern crate markdown;
use markdown::{
mdast::{Break, Node, Paragraph, Root, Text},
to_html, to_html_with_options, to_mdast,
unist::Position,
Constructs, Options, ParseOptions,
};
use pretty_assertions::assert_eq;
#[test]
fn hard_break_escape() -> Result<(), String> {
assert_eq!(
to_html("foo\\\nbaz"),
"<p>foo<br />\nbaz</p>",
"should support a backslash to form a hard break"
);
assert_eq!(
to_html("foo\\\n bar"),
"<p>foo<br />\nbar</p>",
"should support leading spaces after an escape hard break"
);
assert_eq!(
to_html("*foo\\\nbar*"),
"<p><em>foo<br />\nbar</em></p>",
"should support escape hard breaks in emphasis"
);
assert_eq!(
to_html("``code\\\ntext``"),
"<p><code>code\\ text</code></p>",
"should not support escape hard breaks in code"
);
assert_eq!(
to_html("foo\\"),
"<p>foo\\</p>",
"should not support escape hard breaks at the end of a paragraph"
);
assert_eq!(
to_html("### foo\\"),
"<h3>foo\\</h3>",
"should not support escape hard breaks at the end of a heading"
);
assert_eq!(
to_html_with_options(
"a\\\nb",
&Options {
parse: ParseOptions {
constructs: Constructs {
hard_break_escape: false,
..Constructs::default()
},
..Default::default()
},
..Default::default()
}
)?,
"<p>a\\\nb</p>",
"should support turning off hard break (escape)"
);
assert_eq!(
to_mdast("a\\\nb.", &Default::default())?,
Node::Root(Root {
children: vec![Node::Paragraph(Paragraph {
children: vec![
Node::Text(Text {
value: "a".into(),
position: Some(Position::new(1, 1, 0, 1, 2, 1))
}),
Node::Break(Break {
position: Some(Position::new(1, 2, 1, 2, 1, 3))
}),
Node::Text(Text {
value: "b.".into(),
position: Some(Position::new(2, 1, 3, 2, 3, 5))
}),
],
position: Some(Position::new(1, 1, 0, 2, 3, 5))
})],
position: Some(Position::new(1, 1, 0, 2, 3, 5))
}),
"should support hard break (escape) as `Break`s in mdast"
);
Ok(())
}
|