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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
extern crate markdown;
use markdown::{
mdast::{Heading, Node, Root, Text},
to_html, to_html_with_options, to_mdast,
unist::Position,
Constructs, Options, ParseOptions,
};
use pretty_assertions::assert_eq;
#[test]
fn heading_setext() -> Result<(), String> {
assert_eq!(
to_html("Foo *bar*\n========="),
"<h1>Foo <em>bar</em></h1>",
"should support a heading w/ an equals to (rank of 1)"
);
assert_eq!(
to_html("Foo *bar*\n---------"),
"<h2>Foo <em>bar</em></h2>",
"should support a heading w/ a dash (rank of 2)"
);
assert_eq!(
to_html("Foo *bar\nbaz*\n===="),
"<h1>Foo <em>bar\nbaz</em></h1>",
"should support line endings in setext headings"
);
assert_eq!(
to_html(" Foo *bar\nbaz*\t\n===="),
"<h1>Foo <em>bar\nbaz</em></h1>",
"should not include initial and final whitespace around content"
);
assert_eq!(
to_html("Foo\n-------------------------"),
"<h2>Foo</h2>",
"should support long underlines"
);
assert_eq!(
to_html("Foo\n="),
"<h1>Foo</h1>",
"should support short underlines"
);
assert_eq!(
to_html(" Foo\n ==="),
"<h1>Foo</h1>",
"should support indented content w/ 1 space"
);
assert_eq!(
to_html(" Foo\n---"),
"<h2>Foo</h2>",
"should support indented content w/ 2 spaces"
);
assert_eq!(
to_html(" Foo\n---"),
"<h2>Foo</h2>",
"should support indented content w/ 3 spaces"
);
assert_eq!(
to_html(" Foo\n ---"),
"<pre><code>Foo\n---\n</code></pre>",
"should not support too much indented content (1)"
);
assert_eq!(
to_html(" Foo\n---"),
"<pre><code>Foo\n</code></pre>\n<hr />",
"should not support too much indented content (2)"
);
assert_eq!(
to_html("Foo\n ---- "),
"<h2>Foo</h2>",
"should support initial and final whitespace around the underline"
);
assert_eq!(
to_html("Foo\n ="),
"<h1>Foo</h1>",
"should support whitespace before underline"
);
assert_eq!(
to_html("Foo\n ="),
"<p>Foo\n=</p>",
"should not support too much whitespace before underline (1)"
);
assert_eq!(
to_html("Foo\n\t="),
"<p>Foo\n=</p>",
"should not support too much whitespace before underline (2)"
);
assert_eq!(
to_html("Foo\n= ="),
"<p>Foo\n= =</p>",
"should not support whitespace in the underline (1)"
);
assert_eq!(
to_html("Foo\n--- -"),
"<p>Foo</p>\n<hr />",
"should not support whitespace in the underline (2)"
);
assert_eq!(
to_html("Foo \n-----"),
"<h2>Foo</h2>",
"should not support a hard break w/ spaces at the end"
);
assert_eq!(
to_html("Foo\\\n-----"),
"<h2>Foo\\</h2>",
"should not support a hard break w/ backslash at the end"
);
assert_eq!(
to_html("`Foo\n----\n`"),
"<h2>`Foo</h2>\n<p>`</p>",
"should precede over inline constructs (1)"
);
assert_eq!(
to_html("<a title=\"a lot\n---\nof dashes\"/>"),
"<h2><a title="a lot</h2>\n<p>of dashes"/></p>",
"should precede over inline constructs (2)"
);
assert_eq!(
to_html("> Foo\n---"),
"<blockquote>\n<p>Foo</p>\n</blockquote>\n<hr />",
"should not allow underline to be lazy (1)"
);
assert_eq!(
to_html("> foo\nbar\n==="),
"<blockquote>\n<p>foo\nbar\n===</p>\n</blockquote>",
"should not allow underline to be lazy (2)"
);
assert_eq!(
to_html("- Foo\n---"),
"<ul>\n<li>Foo</li>\n</ul>\n<hr />",
"should not allow underline to be lazy (3)"
);
assert_eq!(
to_html("Foo\nBar\n---"),
"<h2>Foo\nBar</h2>",
"should support line endings in setext headings"
);
assert_eq!(
to_html("---\nFoo\n---\nBar\n---\nBaz"),
"<hr />\n<h2>Foo</h2>\n<h2>Bar</h2>\n<p>Baz</p>",
"should support adjacent setext headings"
);
assert_eq!(
to_html("\n===="),
"<p>====</p>",
"should not support empty setext headings"
);
assert_eq!(
to_html("---\n---"),
"<hr />\n<hr />",
"should prefer other constructs over setext headings (1)"
);
assert_eq!(
to_html("- foo\n-----"),
"<ul>\n<li>foo</li>\n</ul>\n<hr />",
"should prefer other constructs over setext headings (2)"
);
assert_eq!(
to_html(" foo\n---"),
"<pre><code>foo\n</code></pre>\n<hr />",
"should prefer other constructs over setext headings (3)"
);
assert_eq!(
to_html("> foo\n-----"),
"<blockquote>\n<p>foo</p>\n</blockquote>\n<hr />",
"should prefer other constructs over setext headings (4)"
);
assert_eq!(
to_html("\\> foo\n------"),
"<h2>> foo</h2>",
"should support starting w/ character escapes"
);
assert_eq!(
to_html("Foo\nbar\n---\nbaz"),
"<h2>Foo\nbar</h2>\n<p>baz</p>",
"paragraph and heading interplay (1)"
);
assert_eq!(
to_html("Foo\n\nbar\n---\nbaz"),
"<p>Foo</p>\n<h2>bar</h2>\n<p>baz</p>",
"paragraph and heading interplay (2)"
);
assert_eq!(
to_html("Foo\nbar\n\n---\n\nbaz"),
"<p>Foo\nbar</p>\n<hr />\n<p>baz</p>",
"paragraph and heading interplay (3)"
);
assert_eq!(
to_html("Foo\nbar\n* * *\nbaz"),
"<p>Foo\nbar</p>\n<hr />\n<p>baz</p>",
"paragraph and heading interplay (4)"
);
assert_eq!(
to_html("Foo\nbar\n\\---\nbaz"),
"<p>Foo\nbar\n---\nbaz</p>",
"paragraph and heading interplay (5)"
);
// Extra:
assert_eq!(
to_html("Foo \nbar\n-----"),
"<h2>Foo<br />\nbar</h2>",
"should support a hard break w/ spaces in between"
);
assert_eq!(
to_html("Foo\\\nbar\n-----"),
"<h2>Foo<br />\nbar</h2>",
"should support a hard break w/ backslash in between"
);
assert_eq!(
to_html("a\n-\nb"),
"<h2>a</h2>\n<p>b</p>",
"should prefer a setext heading over an interrupting list"
);
assert_eq!(
to_html("> ===\na"),
"<blockquote>\n<p>===\na</p>\n</blockquote>",
"should not support lazyness (1)"
);
assert_eq!(
to_html("> a\n==="),
"<blockquote>\n<p>a\n===</p>\n</blockquote>",
"should not support lazyness (2)"
);
assert_eq!(
to_html("a\n- ==="),
"<p>a</p>\n<ul>\n<li>===</li>\n</ul>",
"should not support piercing (1)"
);
assert_eq!(
to_html("a\n* ---"),
"<p>a</p>\n<ul>\n<li>\n<hr />\n</li>\n</ul>",
"should not support piercing (2)"
);
assert_eq!(
to_html_with_options(
"a\n-",
&Options {
parse: ParseOptions {
constructs: Constructs {
heading_setext: false,
..Default::default()
},
..Default::default()
},
..Default::default()
}
)?,
"<p>a\n-</p>",
"should support turning off setext underlines"
);
assert_eq!(
to_mdast("alpha\nbravo\n==", &Default::default())?,
Node::Root(Root {
children: vec![Node::Heading(Heading {
depth: 1,
children: vec![Node::Text(Text {
value: "alpha\nbravo".into(),
position: Some(Position::new(1, 1, 0, 2, 6, 11))
}),],
position: Some(Position::new(1, 1, 0, 3, 3, 14))
})],
position: Some(Position::new(1, 1, 0, 3, 3, 14))
}),
"should support heading (atx) as `Heading`s in mdast"
);
Ok(())
}
|