liepress 0.1.4

A Markdown to PDF/SVG/PNG converter with CSS styling support
Documentation
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
//! AST 结构测试

use liepress::ast::{NodeKind, parse_markdown};

#[test]
fn test_parse_unordered_list() {
    let md = "- Item 1\n- Item 2\n- Item 3";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            assert_eq!(children.len(), 1);
            match &children[0].kind {
                NodeKind::List {
                    ordered, children, ..
                } => {
                    assert!(!ordered);
                    assert_eq!(children.len(), 3);
                }
                _ => panic!("Expected List node"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_ordered_list() {
    let md = "1. First\n2. Second\n3. Third";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => match &children[0].kind {
            NodeKind::List { ordered, .. } => {
                assert!(*ordered);
            }
            _ => panic!("Expected ordered List"),
        },
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_nested_list() {
    let md = "- Item 1\n  - Sub 1\n  - Sub 2\n- Item 2";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            match &children[0].kind {
                NodeKind::List {
                    children: items, ..
                } => {
                    assert_eq!(items.len(), 2);
                    // First item has nested list
                    match &items[0].kind {
                        NodeKind::ListItem { children } => {
                            assert!(children.len() > 1);
                        }
                        _ => panic!("Expected ListItem"),
                    }
                }
                _ => panic!("Expected List"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_code_block() {
    let md = "```rust\nfn main() {}\n```";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            assert_eq!(children.len(), 1);
            match &children[0].kind {
                NodeKind::CodeBlock { lang, code } => {
                    assert_eq!(lang.as_deref(), Some("rust"));
                    // 围栏代码块内容包含末尾换行符(CommonMark 规范)
                    assert_eq!(code, "fn main() {}\n");
                }
                _ => panic!("Expected CodeBlock"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_codeblock_without_lang() {
    let md = "```\nsome code\n```";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => match &children[0].kind {
            NodeKind::CodeBlock { lang, code } => {
                assert!(lang.is_none());
                // 围栏代码块内容包含末尾换行符(CommonMark 规范)
                assert_eq!(code, "some code\n");
            }
            _ => panic!("Expected CodeBlock"),
        },
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_code_block_preserves_newlines() {
    // 多行代码块:换行和缩进必须原样保留
    let md = "```rust\nfn main() {\n    println!(\"Hello\");\n}\n```";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            assert_eq!(children.len(), 1);
            match &children[0].kind {
                NodeKind::CodeBlock { lang, code } => {
                    assert_eq!(lang.as_deref(), Some("rust"));
                    // 必须精确保留换行和缩进
                    assert_eq!(code, "fn main() {\n    println!(\"Hello\");\n}\n");
                }
                _ => panic!("Expected CodeBlock"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_blockquote() {
    let md = "> This is a quote";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            assert_eq!(children.len(), 1);
            match &children[0].kind {
                NodeKind::Blockquote { children } => {
                    assert!(!children.is_empty());
                }
                _ => panic!("Expected Blockquote"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_thematic_break() {
    let md = "---";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            assert_eq!(children.len(), 1);
            match &children[0].kind {
                NodeKind::ThematicBreak => {}
                _ => panic!("Expected ThematicBreak"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_inline_formatting() {
    let md = "**bold** and *italic* and `code`";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            match &children[0].kind {
                NodeKind::Paragraph { children } => {
                    // Should have multiple inline elements
                    assert!(!children.is_empty());
                }
                _ => panic!("Expected Paragraph"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_link() {
    let md = "[link text](https://example.com)";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => match &children[0].kind {
            NodeKind::Paragraph { children } => match &children[0].kind {
                NodeKind::Link { url, .. } => {
                    assert_eq!(url, "https://example.com");
                }
                _ => panic!("Expected Link"),
            },
            _ => panic!("Expected Paragraph"),
        },
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_image() {
    let md = "![alt text](image.png)";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => match &children[0].kind {
            NodeKind::Paragraph { children } => match &children[0].kind {
                NodeKind::Image { src, alt, .. } => {
                    assert_eq!(src, "image.png");
                    assert_eq!(alt, "alt text");
                }
                _ => panic!("Expected Image"),
            },
            _ => panic!("Expected Paragraph"),
        },
        _ => panic!("Expected Document root"),
    }
}

// ─── 任务列表测试 ───

#[test]
fn test_parse_unchecked_task_list() {
    let md = "- [ ] Buy groceries\n- [ ] Clean the house";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            assert_eq!(children.len(), 1);
            match &children[0].kind {
                NodeKind::List {
                    ordered,
                    children: items,
                    ..
                } => {
                    assert!(!ordered);
                    assert_eq!(items.len(), 2);

                    // 每个都是未勾选的任务列表项
                    match &items[0].kind {
                        NodeKind::TaskListItem { checked, children } => {
                            assert!(!checked, "First item should be unchecked");
                            assert!(!children.is_empty());
                        }
                        _ => panic!("Expected TaskListItem, got {:?}", items[0].kind),
                    }
                    match &items[1].kind {
                        NodeKind::TaskListItem { checked, .. } => {
                            assert!(!checked, "Second item should be unchecked");
                        }
                        _ => panic!("Expected TaskListItem"),
                    }
                }
                _ => panic!("Expected List node"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_checked_task_list() {
    let md = "- [x] Completed task\n- [X] Another done";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            match &children[0].kind {
                NodeKind::List {
                    children: items, ..
                } => {
                    assert_eq!(items.len(), 2);

                    // 第一个已勾选(小写 x)
                    match &items[0].kind {
                        NodeKind::TaskListItem { checked, .. } => {
                            assert!(*checked, "First item should be checked");
                        }
                        _ => panic!("Expected TaskListItem"),
                    }
                    // 第二个已勾选(大写 X,GFM 标准也支持)
                    match &items[1].kind {
                        NodeKind::TaskListItem { checked, .. } => {
                            assert!(*checked, "Second item (with X) should be checked");
                        }
                        _ => panic!("Expected TaskListItem"),
                    }
                }
                _ => panic!("Expected List node"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_parse_mixed_task_list() {
    let md = "- Regular item\n- [x] Task done\n- Another regular\n- [ ] Task pending";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            match &children[0].kind {
                NodeKind::List {
                    children: items, ..
                } => {
                    assert_eq!(items.len(), 4);

                    // 第 1 项:普通列表项
                    assert!(
                        matches!(items[0].kind, NodeKind::ListItem { .. }),
                        "Item 0 should be ListItem"
                    );
                    // 第 2 项:已勾选任务
                    match &items[1].kind {
                        NodeKind::TaskListItem { checked, .. } => assert!(*checked),
                        _ => panic!("Item 1 should be TaskListItem"),
                    }
                    // 第 3 项:普通列表项
                    assert!(
                        matches!(items[2].kind, NodeKind::ListItem { .. }),
                        "Item 2 should be ListItem"
                    );
                    // 第 4 项:未勾选任务
                    match &items[3].kind {
                        NodeKind::TaskListItem { checked, .. } => assert!(!*checked),
                        _ => panic!("Item 3 should be TaskListItem"),
                    }
                }
                _ => panic!("Expected List node"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}

#[test]
fn test_task_list_text_content() {
    use liepress::ast::collect_text;

    let md = "- [ ] Buy groceries\n- [x] Pay bills";
    let node = parse_markdown(md).unwrap();
    let text = collect_text(&node);

    assert!(text.contains("Buy groceries"));
    assert!(text.contains("Pay bills"));
}

#[test]
fn test_task_list_with_nested_content() {
    let md = "- [x] **Bold task**\n- [ ] *Italic subtask*";
    let node = parse_markdown(md).unwrap();

    match &node.kind {
        NodeKind::Document { children } => {
            match &children[0].kind {
                NodeKind::List {
                    children: items, ..
                } => {
                    assert_eq!(items.len(), 2);

                    // 第一个任务项:已勾选,且内容包含 Strong(直接作为子节点)
                    match &items[0].kind {
                        NodeKind::TaskListItem { checked, children } => {
                            assert!(*checked);
                            assert!(!children.is_empty());
                            // pulldown-cmark 在列表项中不添加 <p> 包裹,Strong 直接作为子节点
                            let has_strong = children
                                .iter()
                                .any(|c| matches!(c.kind, NodeKind::Strong { .. }));
                            assert!(
                                has_strong,
                                "Task item should contain Strong (got children kinds: {:?})",
                                children
                                    .iter()
                                    .map(|c| format!("{:?}", c.kind))
                                    .collect::<Vec<_>>()
                            );
                        }
                        _ => panic!("Expected TaskListItem"),
                    }

                    // 第二个任务项:未勾选,且内容包含 Emphasis(直接作为子节点)
                    match &items[1].kind {
                        NodeKind::TaskListItem { checked, children } => {
                            assert!(!*checked);
                            let has_em = children
                                .iter()
                                .any(|c| matches!(c.kind, NodeKind::Emphasis { .. }));
                            assert!(
                                has_em,
                                "Task item should contain Emphasis (got children kinds: {:?})",
                                children
                                    .iter()
                                    .map(|c| format!("{:?}", c.kind))
                                    .collect::<Vec<_>>()
                            );
                        }
                        _ => panic!("Expected TaskListItem"),
                    }
                }
                _ => panic!("Expected List node"),
            }
        }
        _ => panic!("Expected Document root"),
    }
}