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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
use markdown::{
mdast::{Node, Root, Toml, Yaml},
to_html, to_html_with_options, to_mdast,
unist::Position,
Constructs, Options, ParseOptions,
};
use pretty_assertions::assert_eq;
#[test]
fn frontmatter() -> Result<(), String> {
let frontmatter = Options {
parse: ParseOptions {
constructs: Constructs {
frontmatter: true,
..Default::default()
},
..Default::default()
},
..Default::default()
};
assert_eq!(
to_html("---\ntitle: Jupyter\n---"),
"<hr />\n<h2>title: Jupyter</h2>",
"should not support frontmatter by default"
);
assert_eq!(
to_html_with_options("---\ntitle: Jupyter\n---", &frontmatter)?,
"",
"should support frontmatter (yaml)"
);
assert_eq!(
to_html_with_options("+++\ntitle = \"Jupyter\"\n+++", &frontmatter)?,
"",
"should support frontmatter (toml)"
);
assert_eq!(
to_html_with_options("---\n---", &frontmatter)?,
"",
"should support empty frontmatter"
);
assert_eq!(
to_html_with_options("--\n---", &frontmatter)?,
"<h2>--</h2>",
"should not support 2 markers in an opening fence"
);
assert_eq!(
to_html_with_options("----\n---", &frontmatter)?,
"<hr />\n<hr />",
"should not support 4 markers in an opening fence"
);
assert_eq!(
to_html_with_options("---\n--", &frontmatter)?,
"<hr />\n<p>--</p>",
"should not support 2 markers in a closing fence"
);
assert_eq!(
to_html_with_options("---\n----", &frontmatter)?,
"<hr />\n<hr />",
"should not support 4 markers in a closing fence"
);
assert_eq!(
to_html_with_options("---\n---\n## Neptune", &frontmatter)?,
"<h2>Neptune</h2>",
"should support content after frontmatter"
);
assert_eq!(
to_html_with_options("--- \t\n---", &frontmatter)?,
"",
"should support spaces and tabs after opening fence"
);
assert_eq!(
to_html_with_options("---\n---\t ", &frontmatter)?,
"",
"should support spaces and tabs after closing fence"
);
assert_eq!(
to_html_with_options("--- a\n---", &frontmatter)?,
"<h2>--- a</h2>",
"should not support content after opening fence"
);
assert_eq!(
to_html_with_options("---\n--- b", &frontmatter)?,
"<hr />\n<p>--- b</p>",
"should not support content after closing fence"
);
assert_eq!(
to_html_with_options("## Neptune\n---\n---", &frontmatter)?,
"<h2>Neptune</h2>\n<hr />\n<hr />",
"should not support frontmatter after content"
);
assert_eq!(
to_html_with_options("> ---\n> ---\n> ## Neptune", &frontmatter)?,
"<blockquote>\n<hr />\n<hr />\n<h2>Neptune</h2>\n</blockquote>",
"should not support frontmatter in a container"
);
assert_eq!(
to_html_with_options("---", &frontmatter)?,
"<hr />",
"should not support just an opening fence"
);
assert_eq!(
to_html_with_options("---\ntitle: Neptune", &frontmatter)?,
"<hr />\n<p>title: Neptune</p>",
"should not support a missing closing fence"
);
assert_eq!(
to_html_with_options("---\na\n\nb\n \t\nc\n---", &frontmatter)?,
"",
"should support blank lines in frontmatter"
);
assert_eq!(
to_mdast("---\na: b\n---", &frontmatter.parse)?,
Node::Root(Root {
children: vec![Node::Yaml(Yaml {
value: "a: b".into(),
position: Some(Position::new(1, 1, 0, 3, 4, 12))
})],
position: Some(Position::new(1, 1, 0, 3, 4, 12))
}),
"should support yaml as `Yaml`s in mdast"
);
assert_eq!(
to_mdast("+++\ntitle = \"Jupyter\"\n+++", &frontmatter.parse)?,
Node::Root(Root {
children: vec![Node::Toml(Toml {
value: "title = \"Jupyter\"".into(),
position: Some(Position::new(1, 1, 0, 3, 4, 25))
})],
position: Some(Position::new(1, 1, 0, 3, 4, 25))
}),
"should support toml as `Toml`s in mdast"
);
Ok(())
}
|