mlux 1.7.0

A rich Markdown viewer for modern terminals
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
use std::collections::HashSet;
use std::ops::Range;
use std::time::Instant;

use log::info;
use pulldown_cmark::{CodeBlockKind, Event, Options, Parser, Tag, TagEnd};

use super::markup_util::{
    escape_typst, escape_typst_string_literal, typst_image, typst_image_placeholder,
};

/// Convert a LaTeX math expression to Typst math markup using mitex.
/// Returns the original LaTeX string (prefixed with indicators for debugging)
/// if conversion fails.
fn latex_to_typst_math(latex: &str) -> String {
    match mitex::convert_math(latex, None) {
        Ok(typst_math) => typst_math,
        Err(_) => {
            // Fallback: emit as-is in a Typst math block so it's visible
            // (though likely broken). This avoids silently dropping content.
            latex.to_string()
        }
    }
}

/// Markdown source line → Typst output byte range mapping for a single block.
#[derive(Debug, Clone)]
pub struct BlockMapping {
    /// Byte range within the Typst output (content_text).
    pub typst_byte_range: Range<usize>,
    /// Byte range within the original Markdown source.
    pub md_byte_range: Range<usize>,
}

/// Mapping from Typst output positions back to Markdown source positions.
#[derive(Debug, Clone)]
pub struct SourceMap {
    /// Block mappings sorted by `typst_byte_range.start` ascending.
    pub blocks: Vec<BlockMapping>,
}

impl SourceMap {
    /// Find the BlockMapping whose typst_byte_range contains `typst_offset`.
    pub fn find_by_typst_offset(&self, typst_offset: usize) -> Option<&BlockMapping> {
        // Binary search for the block whose range contains the offset.
        let idx = self
            .blocks
            .binary_search_by(|b| {
                if typst_offset < b.typst_byte_range.start {
                    std::cmp::Ordering::Greater
                } else if typst_offset >= b.typst_byte_range.end {
                    std::cmp::Ordering::Less
                } else {
                    std::cmp::Ordering::Equal
                }
            })
            .ok()?;
        Some(&self.blocks[idx])
    }
}

/// State tracking for nested containers during conversion.
#[derive(Debug)]
enum Container {
    Heading,
    Strong,
    Emphasis,
    Strikethrough,
    Link { _url: String },
    Image { path: String },
    BlockQuote,
    BlockQuoteCapped,
    List { ordered: bool },
    Item,
    CodeBlock,
    Table { _col_count: usize },
    TableHead,
    TableRow,
    TableCell,
}

const MAX_BLOCKQUOTE_DEPTH: usize = 10;

/// Extract image paths from Markdown source.
///
/// Lightweight parse that collects `dest_url` from all `![alt](dest_url)` images.
pub fn extract_image_paths(markdown: &str) -> Vec<String> {
    let mut options = Options::empty();
    options.insert(Options::ENABLE_TABLES);
    options.insert(Options::ENABLE_STRIKETHROUGH);
    options.insert(Options::ENABLE_MATH);
    let parser = Parser::new_ext(markdown, options);

    let mut paths = Vec::new();
    let mut seen = HashSet::new();
    for event in parser {
        match event {
            Event::Start(Tag::Image { dest_url, .. }) => {
                let url = dest_url.to_string();
                if !url.is_empty() && seen.insert(url.clone()) {
                    paths.push(url);
                }
            }
            Event::Html(html) | Event::InlineHtml(html) => {
                for src in super::markup_html::extract_img_srcs(&html) {
                    if seen.insert(src.clone()) {
                        paths.push(src);
                    }
                }
            }
            _ => {}
        }
    }
    paths
}

/// Convert Markdown text to Typst markup.
///
/// `available_images` is the set of image paths that were successfully loaded.
/// When `Some`, images in the set produce `#image()` calls; others produce a
/// placeholder block. When `None`, all images produce placeholders.
///
/// Returns the Typst markup string and a `SourceMap` that maps Typst byte
/// ranges back to the original Markdown byte ranges (block-level granularity).
pub fn markdown_to_typst(
    markdown: &str,
    available_images: Option<&HashSet<String>>,
) -> (String, SourceMap) {
    let start = Instant::now();
    let mut options = Options::empty();
    options.insert(Options::ENABLE_TABLES);
    options.insert(Options::ENABLE_STRIKETHROUGH);
    options.insert(Options::ENABLE_MATH);
    let parser = Parser::new_ext(markdown, options);

    let mut output = String::new();
    let mut stack: Vec<Container> = Vec::new();
    let mut in_code_block = false;
    // Buffer for collecting code block content (deferred fence writing)
    let mut code_block_buf = String::new();
    let mut code_block_lang = String::new();
    // Buffer for collecting table cell content
    let mut cell_buf: Option<String> = None;
    // Collected cells for current table
    let mut table_cells: Vec<String> = Vec::new();
    let mut table_col_count: usize = 0;

    // Source mapping: track top-level block boundaries
    let mut source_map_blocks: Vec<BlockMapping> = Vec::new();
    // Stack of (typst_start, md_range) for open top-level blocks
    let mut block_starts: Vec<(usize, Range<usize>)> = Vec::new();
    // Depth counter for block-level nesting (only record at depth 0)
    let mut block_depth: usize = 0;

    for (event, md_range) in parser.into_offset_iter() {
        match event {
            // === Block-level Start tags ===
            Event::Start(Tag::Paragraph) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                block_depth += 1;
                let in_item = stack.iter().any(|c| matches!(c, Container::Item));
                if in_item {
                    // Inside a list item (loose list): first paragraph follows
                    // the marker directly; subsequent paragraphs get blank line
                    // + indent to stay within the item.
                    if !output.ends_with("- ") && !output.ends_with("+ ") {
                        if !output.ends_with('\n') {
                            output.push('\n');
                        }
                        output.push('\n');
                        let list_depth = stack
                            .iter()
                            .filter(|c| matches!(c, Container::List { .. }))
                            .count();
                        let indent = list_depth.saturating_sub(1) * 2 + 2;
                        for _ in 0..indent {
                            output.push(' ');
                        }
                    }
                } else {
                    if !output.is_empty() && !output.ends_with('\n') {
                        output.push('\n');
                    }
                    if !output.is_empty() {
                        output.push('\n');
                    }
                }
            }
            Event::Start(Tag::Heading { level, .. }) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                block_depth += 1;
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                if !output.is_empty() {
                    output.push('\n');
                }
                let prefix = "=".repeat(level as usize);
                output.push_str(&prefix);
                output.push(' ');
                stack.push(Container::Heading);
            }
            Event::Start(Tag::BlockQuote(_)) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                block_depth += 1;
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                if !output.is_empty() {
                    output.push('\n');
                }
                let bq_depth = stack
                    .iter()
                    .filter(|c| matches!(c, Container::BlockQuote | Container::BlockQuoteCapped))
                    .count();
                if bq_depth < MAX_BLOCKQUOTE_DEPTH {
                    output.push_str("#quote(block: true)[");
                    stack.push(Container::BlockQuote);
                } else {
                    stack.push(Container::BlockQuoteCapped);
                }
            }
            Event::Start(Tag::CodeBlock(kind)) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                block_depth += 1;
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                if !output.is_empty() {
                    output.push('\n');
                }
                in_code_block = true;
                code_block_lang = match &kind {
                    CodeBlockKind::Fenced(lang) if !lang.is_empty() => lang.to_string(),
                    _ => String::new(),
                };
                code_block_buf.clear();
                stack.push(Container::CodeBlock);
            }
            Event::Start(Tag::List(start)) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                block_depth += 1;
                let is_nested = stack.iter().any(|c| matches!(c, Container::List { .. }));
                if is_nested {
                    // Nested list: newline only (no blank line)
                    if !output.is_empty() && !output.ends_with('\n') {
                        output.push('\n');
                    }
                } else {
                    // Top-level list: blank line before
                    if !output.is_empty() && !output.ends_with('\n') {
                        output.push('\n');
                    }
                    if !output.is_empty() {
                        output.push('\n');
                    }
                }
                stack.push(Container::List {
                    ordered: start.is_some(),
                });
            }
            Event::Start(Tag::Item) => {
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                // Indent based on list nesting depth (0-indexed, capped at 7)
                let depth = stack
                    .iter()
                    .filter(|c| matches!(c, Container::List { .. }))
                    .count()
                    .saturating_sub(1)
                    .min(7);
                for _ in 0..depth {
                    output.push_str("  ");
                }
                // Determine marker from parent list
                let marker = stack
                    .iter()
                    .rev()
                    .find_map(|c| match c {
                        Container::List { ordered: true } => Some("+ "),
                        Container::List { ordered: false } => Some("- "),
                        _ => None,
                    })
                    .unwrap_or("- ");
                output.push_str(marker);
                stack.push(Container::Item);
            }
            Event::Start(Tag::Table(alignments)) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                block_depth += 1;
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                if !output.is_empty() {
                    output.push('\n');
                }
                table_col_count = alignments.len();
                table_cells.clear();
                stack.push(Container::Table {
                    _col_count: table_col_count,
                });
            }
            Event::Start(Tag::TableHead) => {
                stack.push(Container::TableHead);
            }
            Event::Start(Tag::TableRow) => {
                stack.push(Container::TableRow);
            }
            Event::Start(Tag::TableCell) => {
                cell_buf = Some(String::new());
                stack.push(Container::TableCell);
            }

            // === Inline Start tags ===
            Event::Start(Tag::Strong) => {
                push_to_target(&mut output, &mut cell_buf, "#strong[");
                stack.push(Container::Strong);
            }
            Event::Start(Tag::Emphasis) => {
                push_to_target(&mut output, &mut cell_buf, "#emph[");
                stack.push(Container::Emphasis);
            }
            Event::Start(Tag::Strikethrough) => {
                push_to_target(&mut output, &mut cell_buf, "#strike[");
                stack.push(Container::Strikethrough);
            }
            Event::Start(Tag::Link { dest_url, .. }) => {
                let url = dest_url.to_string();
                if !url.is_empty() {
                    let escaped_url = escape_typst_string_literal(&url);
                    push_to_target(
                        &mut output,
                        &mut cell_buf,
                        &format!("#link(\"{escaped_url}\")["),
                    );
                }
                stack.push(Container::Link { _url: url });
            }
            Event::Start(Tag::Image { dest_url, .. }) => {
                stack.push(Container::Image {
                    path: dest_url.to_string(),
                });
            }

            // === End tags ===
            Event::End(TagEnd::Paragraph) => {
                if !output.ends_with('\n') {
                    output.push('\n');
                }
                block_depth -= 1;
                if block_depth == 0
                    && let Some((typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::End(TagEnd::Heading(_)) => {
                if !output.ends_with('\n') {
                    output.push('\n');
                }
                pop_expect(&mut stack, "Heading");
                block_depth -= 1;
                if block_depth == 0
                    && let Some((typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::End(TagEnd::BlockQuote(_)) => {
                match stack.pop() {
                    Some(Container::BlockQuote) => {
                        let trimmed = output.trim_end().len();
                        output.truncate(trimmed);
                        output.push_str("]\n");
                    }
                    Some(Container::BlockQuoteCapped) => {
                        // Depth-capped: no closing bracket needed
                    }
                    other => {
                        debug_assert!(false, "expected BlockQuote/BlockQuoteCapped, got {other:?}");
                    }
                }
                block_depth -= 1;
                if block_depth == 0
                    && let Some((typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::End(TagEnd::CodeBlock) => {
                in_code_block = false;
                if code_block_lang == "mermaid" {
                    // Emit as image reference; diagram rendering happens later
                    let key = crate::diagram::diagram_key(&code_block_buf);
                    let is_available = available_images.is_some_and(|set| set.contains(&key));
                    if is_available {
                        push_to_target(&mut output, &mut cell_buf, &typst_image(&key));
                    } else {
                        // Fallback: render as regular code block
                        let fence_len = max_backtick_run(&code_block_buf).max(2) + 1;
                        let fence: String = "`".repeat(fence_len);
                        push_to_target(&mut output, &mut cell_buf, &fence);
                        push_to_target(&mut output, &mut cell_buf, "mermaid");
                        push_to_target(&mut output, &mut cell_buf, "\n");
                        push_to_target(&mut output, &mut cell_buf, &code_block_buf);
                        if !code_block_buf.ends_with('\n') {
                            push_to_target(&mut output, &mut cell_buf, "\n");
                        }
                        push_to_target(&mut output, &mut cell_buf, &fence);
                        push_to_target(&mut output, &mut cell_buf, "\n");
                    }
                } else {
                    // Use a fence longer than any backtick run in the content
                    let fence_len = max_backtick_run(&code_block_buf).max(2) + 1;
                    let fence: String = "`".repeat(fence_len);
                    push_to_target(&mut output, &mut cell_buf, &fence);
                    push_to_target(&mut output, &mut cell_buf, &code_block_lang);
                    push_to_target(&mut output, &mut cell_buf, "\n");
                    push_to_target(&mut output, &mut cell_buf, &code_block_buf);
                    if !code_block_buf.ends_with('\n') {
                        push_to_target(&mut output, &mut cell_buf, "\n");
                    }
                    push_to_target(&mut output, &mut cell_buf, &fence);
                    push_to_target(&mut output, &mut cell_buf, "\n");
                }
                code_block_buf.clear();
                code_block_lang.clear();
                pop_expect(&mut stack, "CodeBlock");
                block_depth -= 1;
                if block_depth == 0
                    && let Some((typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::End(TagEnd::List(_)) => {
                pop_expect(&mut stack, "List");
                block_depth -= 1;
                if block_depth == 0
                    && let Some((typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::End(TagEnd::Item) => {
                if !output.ends_with('\n') {
                    output.push('\n');
                }
                pop_expect(&mut stack, "Item");
            }
            Event::End(TagEnd::Table) => {
                // Emit the entire table
                // For tables, typst_start is recorded at Start(Table) but the
                // actual Typst output is emitted here at End(Table).
                // We need to update the typst_start to the current position
                // before emitting so the range covers the actual output.
                let table_typst_start = output.len();
                output.push_str(&format!("#table(columns: {table_col_count},\n"));
                for cell in &table_cells {
                    output.push_str(&format!("  [{cell}],\n"));
                }
                output.push_str(")\n");
                table_cells.clear();
                pop_expect(&mut stack, "Table");
                block_depth -= 1;
                if block_depth == 0
                    && let Some((_typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: table_typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::End(TagEnd::TableHead) => {
                pop_expect(&mut stack, "TableHead");
            }
            Event::End(TagEnd::TableRow) => {
                pop_expect(&mut stack, "TableRow");
            }
            Event::End(TagEnd::TableCell) => {
                if let Some(buf) = cell_buf.take() {
                    table_cells.push(buf);
                }
                pop_expect(&mut stack, "TableCell");
            }
            Event::End(TagEnd::Strong) => {
                push_to_target(&mut output, &mut cell_buf, "]");
                pop_expect(&mut stack, "Strong");
            }
            Event::End(TagEnd::Emphasis) => {
                push_to_target(&mut output, &mut cell_buf, "]");
                pop_expect(&mut stack, "Emphasis");
            }
            Event::End(TagEnd::Strikethrough) => {
                push_to_target(&mut output, &mut cell_buf, "]");
                pop_expect(&mut stack, "Strikethrough");
            }
            Event::End(TagEnd::Link) => {
                match stack.pop() {
                    Some(Container::Link { _url }) if !_url.is_empty() => {
                        push_to_target(&mut output, &mut cell_buf, "]");
                    }
                    Some(Container::Link { .. }) => {
                        // Empty URL — text was output as plain text, nothing to close
                    }
                    other => {
                        debug_assert!(false, "Expected Link, got {other:?}");
                    }
                }
            }
            Event::End(TagEnd::Image) => match stack.pop() {
                Some(Container::Image { path }) => {
                    let is_available = available_images.is_some_and(|set| set.contains(&path));
                    if is_available {
                        push_to_target(&mut output, &mut cell_buf, &typst_image(&path));
                    } else {
                        push_to_target(&mut output, &mut cell_buf, &typst_image_placeholder(&path));
                    }
                }
                other => {
                    debug_assert!(false, "Expected Image, got {other:?}");
                }
            },

            // === Leaf events ===
            Event::Text(text) => {
                // Suppress alt text inside images
                if stack.iter().any(|c| matches!(c, Container::Image { .. })) {
                    continue;
                }
                if in_code_block {
                    // Insert a space on blank lines so Typst generates a TextItem
                    // (needed for visual line extraction in the sidebar).
                    let text = fill_blank_lines(&text);
                    code_block_buf.push_str(&text);
                } else if cell_buf.is_some() {
                    let escaped = escape_typst(&text);
                    cell_buf.as_mut().unwrap().push_str(&escaped);
                } else {
                    output.push_str(&escape_typst(&text));
                }
            }
            Event::Code(code) => {
                let s = if code.contains('`') {
                    // Can't use backtick delimiters when code contains backticks;
                    // use #raw() function call instead.
                    let escaped = code.replace('\\', "\\\\").replace('"', "\\\"");
                    format!("#raw(\"{}\")", escaped)
                } else {
                    format!("`{code}`")
                };
                push_to_target(&mut output, &mut cell_buf, &s);
            }
            Event::SoftBreak => {
                if in_code_block {
                    code_block_buf.push('\n');
                } else if cell_buf.is_some() {
                    cell_buf.as_mut().unwrap().push('\n');
                } else {
                    output.push('\n');
                    let in_item = stack.iter().any(|c| matches!(c, Container::Item));
                    if in_item {
                        let list_depth = stack
                            .iter()
                            .filter(|c| matches!(c, Container::List { .. }))
                            .count();
                        let indent = list_depth.saturating_sub(1) * 2 + 2;
                        for _ in 0..indent {
                            output.push(' ');
                        }
                    }
                }
            }
            Event::HardBreak => {
                push_to_target(&mut output, &mut cell_buf, "\\ \n");
            }
            Event::Rule => {
                let rule_start = output.len();
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                if !output.is_empty() {
                    output.push('\n');
                }
                output.push_str("#line(length: 100%)\n");
                // Only record a top-level source mapping; inside a list or other
                // block the enclosing block's range already covers this rule.
                if block_depth == 0 {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: rule_start..output.len(),
                        md_byte_range: md_range,
                    });
                }
            }
            Event::InlineMath(latex) => {
                let typst_math = latex_to_typst_math(&latex);
                let s = format!("${typst_math}$");
                push_to_target(&mut output, &mut cell_buf, &s);
            }
            Event::DisplayMath(latex) => {
                if block_depth == 0 {
                    block_starts.push((output.len(), md_range));
                }
                if !output.is_empty() && !output.ends_with('\n') {
                    output.push('\n');
                }
                if !output.is_empty() {
                    output.push('\n');
                }
                let typst_math = latex_to_typst_math(&latex);
                output.push_str(&format!("$ {typst_math} $\n"));
                if block_depth == 0
                    && let Some((typst_start, md_range_start)) = block_starts.pop()
                {
                    source_map_blocks.push(BlockMapping {
                        typst_byte_range: typst_start..output.len(),
                        md_byte_range: md_range_start,
                    });
                }
            }
            Event::Html(html) | Event::InlineHtml(html) => {
                let snippets = super::markup_html::render_html_imgs(&html, available_images);
                if !snippets.is_empty() {
                    if block_depth == 0 {
                        block_starts.push((output.len(), md_range));
                    }
                    for s in &snippets {
                        push_to_target(&mut output, &mut cell_buf, s);
                    }
                    if block_depth == 0
                        && let Some((typst_start, md_range_start)) = block_starts.pop()
                    {
                        source_map_blocks.push(BlockMapping {
                            typst_byte_range: typst_start..output.len(),
                            md_byte_range: md_range_start,
                        });
                    }
                }
            }
            _ => {}
        }
    }

    if !output.is_empty() && !output.ends_with('\n') {
        output.push('\n');
    }

    let source_map = SourceMap {
        blocks: source_map_blocks,
    };
    info!(
        "convert: completed in {:.1}ms (input: {} bytes, output: {} bytes)",
        start.elapsed().as_secs_f64() * 1000.0,
        markdown.len(),
        output.len()
    );
    (output, source_map)
}

/// Push string to the cell buffer if active, otherwise to the main output.
fn push_to_target(output: &mut String, cell_buf: &mut Option<String>, s: &str) {
    if let Some(buf) = cell_buf.as_mut() {
        buf.push_str(s);
    } else {
        output.push_str(s);
    }
}

/// Pop the stack and assert the expected container type (debug only).
fn pop_expect(stack: &mut Vec<Container>, expected: &str) {
    if let Some(container) = stack.pop() {
        debug_assert!(
            matches!(
                (&container, expected),
                (Container::Heading, "Heading")
                    | (Container::Strong, "Strong")
                    | (Container::Emphasis, "Emphasis")
                    | (Container::Strikethrough, "Strikethrough")
                    | (Container::Link { .. }, "Link")
                    | (Container::Image { .. }, "Image")
                    | (Container::BlockQuote, "BlockQuote")
                    | (Container::BlockQuoteCapped, "BlockQuote")
                    | (Container::List { .. }, "List")
                    | (Container::Item, "Item")
                    | (Container::CodeBlock, "CodeBlock")
                    | (Container::Table { .. }, "Table")
                    | (Container::TableHead, "TableHead")
                    | (Container::TableRow, "TableRow")
                    | (Container::TableCell, "TableCell")
            ),
            "Expected {expected}, got {container:?}"
        );
    }
}

/// Find the longest consecutive run of backticks in a string.
fn max_backtick_run(s: &str) -> usize {
    let mut max = 0;
    let mut current = 0;
    for ch in s.chars() {
        if ch == '`' {
            current += 1;
            if current > max {
                max = current;
            }
        } else {
            current = 0;
        }
    }
    max
}

/// Replace blank lines with space-only lines in code block text.
///
/// Typst does not generate a TextItem for empty lines in raw blocks.
/// By inserting a space, we ensure each line has a TextItem whose Y
/// coordinate can be picked up by `extract_visual_lines()`.
fn fill_blank_lines(text: &str) -> String {
    let lines: Vec<&str> = text.split('\n').collect();
    let mut result = String::with_capacity(text.len() + lines.len());
    for (i, line) in lines.iter().enumerate() {
        if i > 0 {
            result.push('\n');
        }
        if line.is_empty() && i < lines.len() - 1 {
            result.push(' ');
        } else {
            result.push_str(line);
        }
    }
    result
}

#[cfg(test)]
mod tests {
    use super::*;

    fn md_to_typst(s: &str) -> String {
        markdown_to_typst(s, None).0
    }

    #[test]
    fn test_plain_text() {
        let md = "Hello, world!";
        let typst = md_to_typst(md);
        assert_eq!(typst, "Hello, world!\n");
    }

    #[test]
    fn test_emph_followed_by_paren() {
        // crash-e263b8df: **Note*(: → \*#emph[Note](: → Typst が関数呼び出しと誤解釈
        let md = "**Note*(: text";
        let typst = md_to_typst(md);
        assert!(
            !typst.contains("]("),
            "'](' は Typst が関数引数と解釈するため不可: {typst}"
        );
        assert!(
            typst.contains("]\\("),
            "']' の直後の '(' は '\\(' にエスケープされるべき: {typst}"
        );
    }

    #[test]
    fn test_bracket_in_heading() {
        // crash-b305e5d4: ## text](url) → ] が Typst の unexpected closing bracket
        let md = "## エanguage](https://docs.invalid/book/) を参照。";
        let typst = md_to_typst(md);
        assert!(
            !typst.contains("]("),
            "'](' は Typst がコンテントブロック閉じと解釈するため不可: {typst}"
        );
        assert!(
            typst.contains("\\]"),
            "テキスト中の ']' は '\\]' にエスケープされるべき: {typst}"
        );
    }

    #[test]
    fn test_brackets_in_text() {
        let md = "配列 arr[0] と [注釈] を含む文";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("arr\\[0\\]"),
            "テキスト中の角括弧はエスケープされるべき: {typst}"
        );
        assert!(
            typst.contains("\\[注釈\\]"),
            "テキスト中の角括弧はエスケープされるべき: {typst}"
        );
    }

    #[test]
    fn test_link_text_with_bracket() {
        let md = "[foo]bar](https://example.invalid/)";
        let typst = md_to_typst(md);
        // 構造的な ] は convert.rs が直接 push、テキスト中の ] は escape される
        assert!(
            !typst.contains("bar]("),
            "リンクテキスト内の ']' は '\\]' にエスケープされるべき: {typst}"
        );
    }

    #[test]
    fn test_parens_in_text() {
        let md = "関数 foo(x, y) を呼ぶ";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("foo\\(x, y\\)"),
            "テキスト中の括弧はエスケープされるべき: {typst}"
        );
    }

    #[test]
    fn test_strong_followed_by_paren() {
        let md = "**bold** (note)";
        let typst = md_to_typst(md);
        assert!(
            !typst.contains("]("),
            "'](' は Typst が関数引数と解釈するため不可: {typst}"
        );
    }

    #[test]
    fn test_soft_break() {
        let md = "line1\nline2";
        let typst = md_to_typst(md);
        assert_eq!(typst, "line1\nline2\n");
    }

    #[test]
    fn test_hard_break() {
        let md = "line1  \nline2";
        let typst = md_to_typst(md);
        assert_eq!(typst, "line1\\ \nline2\n");
    }

    #[test]
    fn test_japanese_text() {
        let md = "日本語のテスト。句読点「、」も正しく処理される。";
        let typst = md_to_typst(md);
        assert!(typst.contains("日本語のテスト。"));
    }

    #[test]
    fn test_multiple_paragraphs() {
        let md = "段落1。\n\n段落2。";
        let typst = md_to_typst(md);
        assert_eq!(typst, "段落1。\n\n段落2。\n");
    }

    #[test]
    fn test_heading() {
        let md = "# Title\n\n## Subtitle";
        let typst = md_to_typst(md);
        assert!(typst.contains("= Title\n"));
        assert!(typst.contains("== Subtitle\n"));
    }

    #[test]
    fn test_bold_italic() {
        let md = "**bold** and *italic*";
        let typst = md_to_typst(md);
        assert!(typst.contains("#strong[bold]"));
        assert!(typst.contains("#emph[italic]"));
    }

    #[test]
    fn test_emphasis_function_syntax() {
        // fuzzer crash-301940: **Note*ks*: with delimiter syntax produced
        // \*\*Note_ks_: causing "unclosed delimiter" in Typst.
        // Function syntax (#emph[...]) avoids this class of bugs.
        let md = "**Note*ks*: hello";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("#emph[ks]"),
            "should use #emph[] function syntax, got: {typst}"
        );
        assert!(
            !typst.contains("_ks_"),
            "should not produce _..._ delimiters, got: {typst}"
        );
    }

    #[test]
    fn test_strikethrough() {
        let md = "~~deleted~~";
        let typst = md_to_typst(md);
        assert!(typst.contains("#strike[deleted]"));
    }

    #[test]
    fn test_inline_code() {
        let md = "Use `Result<T, E>` type";
        let typst = md_to_typst(md);
        assert!(typst.contains("`Result<T, E>`"));
    }

    #[test]
    fn test_inline_code_with_backticks() {
        // pulldown-cmark parses `` ` `` as Code("`")
        let md = "Use `` ` `` in code";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("#raw(\"`\")"),
            "expected #raw() call for backtick-containing code, got: {typst}"
        );
    }

    #[test]
    fn test_inline_code_with_triple_backticks() {
        // pulldown-cmark parses `` ` ``` ` `` as Code("```")
        let md = "` ``` `";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("#raw(\"```\")"),
            "expected #raw() for triple backticks, got: {typst}"
        );
        assert!(
            !typst.contains("`````"),
            "should not produce raw backtick delimiters, got: {typst}"
        );
    }

    #[test]
    fn test_inline_code_with_backticks_in_table() {
        let md = "| Header |\n|--------|\n| `` ` `` |";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("#table("),
            "expected table markup, got: {typst}"
        );
        assert!(
            typst.contains("#raw(\"`\")"),
            "expected #raw() in table cell, got: {typst}"
        );
    }

    #[test]
    fn test_link() {
        let md = "[Rust](https://rust.invalid/)";
        let typst = md_to_typst(md);
        assert!(typst.contains("#link(\"https://rust.invalid/\")[Rust]"));
    }

    #[test]
    fn test_link_empty_url() {
        let md = "[link]()";
        let typst = md_to_typst(md);
        assert!(
            !typst.contains("#link"),
            "empty URL should not produce #link"
        );
        assert!(typst.contains("link"));
    }

    #[test]
    fn test_link_url_with_quote() {
        let md = "[t](https://x.invalid/?q=\"v\")";
        let typst = md_to_typst(md);
        // " must be escaped as \" inside the Typst string literal
        assert!(
            typst.contains("\\\""),
            "double quote in URL must be escaped: {typst}"
        );
        // The #link call must be properly closed with )[
        assert!(
            typst.contains("#link(\"https://x.invalid/?q=\\\"v\\\"\")[t]"),
            "unexpected output: {typst}"
        );
    }

    #[test]
    fn test_link_url_injection_attempt() {
        // Attempt to inject Typst code via a crafted URL containing "
        let md = "[t](https://x.invalid/\"#evil)";
        let typst = md_to_typst(md);
        // The " must be escaped as \" so the Typst string literal stays closed
        assert!(
            typst.contains("\\\"#evil"),
            "quote must be escaped as \\\", got: {typst}"
        );
        // The link must close properly — the URL " did not terminate the string
        assert!(
            typst.contains(")[t]"),
            "link must be properly closed, got: {typst}"
        );
    }

    #[test]
    fn test_code_block() {
        let md = "```rust\nfn main() {}\n```";
        let typst = md_to_typst(md);
        assert!(typst.contains("```rust\nfn main() {}\n```"));
    }

    #[test]
    fn test_unordered_list() {
        let md = "- item1\n- item2";
        let typst = md_to_typst(md);
        assert!(typst.contains("- item1\n"));
        assert!(typst.contains("- item2\n"));
    }

    #[test]
    fn test_ordered_list() {
        let md = "1. first\n2. second";
        let typst = md_to_typst(md);
        assert!(typst.contains("+ first\n"));
        assert!(typst.contains("+ second\n"));
    }

    #[test]
    fn test_blockquote() {
        let md = "> quoted text";
        let typst = md_to_typst(md);
        assert!(typst.contains("#quote(block: true)["));
        assert!(typst.contains("quoted text"));
    }

    #[test]
    fn test_horizontal_rule() {
        let md = "before\n\n---\n\nafter";
        let typst = md_to_typst(md);
        assert!(typst.contains("#line(length: 100%)"));
    }

    #[test]
    fn test_rule_inside_list() {
        // pulldown-cmark parses "+\t---" as an unordered list item containing
        // a thematic break (Rule event), not plain text.
        let md = "+\t---\t\t";
        let typst = md_to_typst(md);
        assert!(typst.contains("- "), "should produce unordered list marker");
        assert!(
            typst.contains("#line(length: 100%)"),
            "should produce horizontal rule"
        );
    }

    #[test]
    fn test_rule_inside_list_source_map() {
        // crash-823d13a0: list item containing --- emitted a Rule source mapping
        // that overlapped with the enclosing List block mapping.
        let md = "+\t---\t\t";
        let (typst, map) = markdown_to_typst(md, None);
        for pair in map.blocks.windows(2) {
            assert!(
                pair[0].typst_byte_range.end <= pair[1].typst_byte_range.start,
                "overlapping typst ranges: {:?} and {:?}",
                pair[0].typst_byte_range,
                pair[1].typst_byte_range,
            );
        }
        for block in &map.blocks {
            assert!(
                block.typst_byte_range.end <= typst.len(),
                "typst_byte_range {:?} out of bounds",
                block.typst_byte_range,
            );
        }
    }

    #[test]
    fn test_table() {
        let md = "| A | B |\n|---|---|\n| 1 | 2 |";
        let typst = md_to_typst(md);
        assert!(typst.contains("#table(columns: 2,"));
        assert!(typst.contains("[A]"));
        assert!(typst.contains("[B]"));
        assert!(typst.contains("[1]"));
        assert!(typst.contains("[2]"));
    }

    #[test]
    fn test_code_block_no_escape() {
        // Characters inside code blocks should NOT be escaped
        let md = "```\n#hello *world* $100\n```";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("#hello *world* $100"),
            "Code block content should not be escaped, got: {typst}"
        );
    }

    #[test]
    fn test_code_block_blank_lines_filled() {
        let md = "```\nline1\n\nline3\n```";
        let typst = md_to_typst(md);
        // Blank line should be replaced with a space
        assert!(
            typst.contains("line1\n \nline3"),
            "Blank lines in code blocks should be filled with a space, got: {typst}"
        );
    }

    #[test]
    fn test_code_block_multiple_blank_lines() {
        let md = "```\nline1\n\n\nline4\n```";
        let typst = md_to_typst(md);
        // Two consecutive blank lines should each get a space
        assert!(
            typst.contains("line1\n \n \nline4"),
            "Multiple blank lines should each be filled, got: {typst}"
        );
    }

    #[test]
    fn test_code_block_containing_backtick_fence() {
        let md = "````\n```rust\nfn main() {}\n```\n````";
        let typst = md_to_typst(md);
        // The generated fence must be longer than the 3-backtick run inside
        assert!(
            typst.contains("````"),
            "fence should be at least 4 backticks, got: {typst}"
        );
        assert!(
            typst.contains("```rust\nfn main() {}\n```"),
            "content should be preserved verbatim, got: {typst}"
        );
    }

    #[test]
    fn test_max_backtick_run() {
        assert_eq!(max_backtick_run(""), 0);
        assert_eq!(max_backtick_run("no backticks"), 0);
        assert_eq!(max_backtick_run("a`b"), 1);
        assert_eq!(max_backtick_run("```"), 3);
        assert_eq!(max_backtick_run("a```b``c"), 3);
        assert_eq!(max_backtick_run("``````"), 6);
    }

    #[test]
    fn test_blockquote_depth_capped() {
        // 15段ネスト → 最初の10段のみ #quote 出力
        let input = "> ".repeat(15) + "deep";
        let result = md_to_typst(&input);
        let quote_count = result.matches("#quote(block: true)[").count();
        assert_eq!(quote_count, MAX_BLOCKQUOTE_DEPTH);
        assert!(result.contains("deep"));
    }

    #[test]
    fn test_fill_blank_lines() {
        assert_eq!(fill_blank_lines("a\n\nb\n"), "a\n \nb\n");
        assert_eq!(fill_blank_lines("a\n\n\nb\n"), "a\n \n \nb\n");
        assert_eq!(fill_blank_lines("a\nb\n"), "a\nb\n"); // no blanks
        assert_eq!(fill_blank_lines("a\n"), "a\n"); // trailing newline preserved
    }

    #[test]
    fn test_nested_unordered_list() {
        let md = "- a\n  - b\n- c";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("- a\n  - b\n- c"),
            "nested unordered list should be indented, got: {typst}"
        );
    }

    #[test]
    fn test_nested_ordered_list() {
        let md = "1. a\n   1. b\n2. c";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("+ a\n  + b\n+ c"),
            "nested ordered list should be indented, got: {typst}"
        );
    }

    #[test]
    fn test_nested_mixed_list() {
        let md = "- a\n  1. b\n- c";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("- a\n  + b\n- c"),
            "nested mixed list should be indented, got: {typst}"
        );
    }

    #[test]
    fn test_deeply_nested_list() {
        // 10 levels deep — depth should cap at 7
        let md = "- L0\n  - L1\n    - L2\n      - L3\n        - L4\n          - L5\n            - L6\n              - L7\n                - L8\n                  - L9";
        let typst = md_to_typst(md);
        // Level 8 and 9 should both be capped at 7 (14 spaces indent)
        let max_indent = typst
            .lines()
            .map(|line| line.len() - line.trim_start().len())
            .max()
            .unwrap_or(0);
        assert_eq!(
            max_indent, 14,
            "max indent should be 14 (7 levels × 2 spaces), got: {max_indent}\n{typst}"
        );
    }

    #[test]
    fn test_loose_unordered_list() {
        // Loose list (blank line between items): text must follow marker directly
        let md = "- a\n\n- b";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("- a\n"),
            "first item text should follow marker: {typst}"
        );
        assert!(
            typst.contains("- b\n"),
            "second item text should follow marker: {typst}"
        );
        assert!(
            !typst.contains("- \n"),
            "marker and text should not be separated: {typst}"
        );
    }

    #[test]
    fn test_loose_ordered_list() {
        // Loose ordered list: text must follow + marker directly
        let md = "1. a\n\n2. b";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("+ a\n"),
            "first item text should follow marker: {typst}"
        );
        assert!(
            typst.contains("+ b\n"),
            "second item text should follow marker: {typst}"
        );
        assert!(
            !typst.contains("+ \n"),
            "marker and text should not be separated: {typst}"
        );
    }

    #[test]
    fn test_list_item_softbreak() {
        // SoftBreak inside a list item must produce indented continuation
        let md = "- first\nsecond";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("- first\n  second"),
            "continuation line should be indented by 2 spaces: {typst}"
        );
    }

    #[test]
    fn test_loose_nested_list() {
        // Nested loose list: inner items should be properly indented
        let md = "- outer\n\n  - inner1\n\n  - inner2";
        let typst = md_to_typst(md);
        assert!(typst.contains("- outer\n"), "outer item: {typst}");
        assert!(
            typst.contains("  - inner1\n"),
            "nested items should be indented: {typst}"
        );
        assert!(
            typst.contains("  - inner2\n"),
            "nested items should be indented: {typst}"
        );
    }

    #[test]
    fn test_table_cell_softbreak() {
        // SoftBreak outside a list should NOT add indentation
        // (regression: ensure non-list SoftBreak is unchanged)
        let md = "para line1\nline2";
        let typst = md_to_typst(md);
        assert_eq!(
            typst, "para line1\nline2\n",
            "non-list softbreak should not add indent"
        );
    }

    #[test]
    fn test_inline_math() {
        let md = "The formula $\\frac{a}{b}$ is inline.";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("$") && typst.contains("frac"),
            "inline math should produce Typst $...$ with converted content, got: {typst}"
        );
        // Should not be escaped as plain text ($)
        assert!(
            !typst.contains("\\$"),
            "math delimiters should not be escaped, got: {typst}"
        );
    }

    #[test]
    fn test_display_math() {
        let md = "$$\n\\sum_{i=1}^{n} x_i\n$$";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("$") && typst.contains("sum"),
            "display math should produce Typst $ ... $ with converted content, got: {typst}"
        );
    }

    #[test]
    fn test_inline_math_simple() {
        let md = "Value $x + y$ here.";
        let typst = md_to_typst(md);
        // mitex adds spacing around operators; just verify it's wrapped in $...$
        assert!(
            typst.contains("$") && typst.contains("x") && typst.contains("y"),
            "simple math should be wrapped in $...$, got: {typst}"
        );
        assert!(
            !typst.contains("\\$"),
            "math delimiters should not be escaped, got: {typst}"
        );
    }

    #[test]
    fn test_math_in_table() {
        let md = "| Formula |\n|---------|\n| $x^2$ |";
        let typst = md_to_typst(md);
        assert!(
            typst.contains("#table("),
            "should produce table, got: {typst}"
        );
        assert!(
            typst.contains("$"),
            "table cell should contain math, got: {typst}"
        );
    }

    #[test]
    fn test_display_math_source_map() {
        let md = "before\n\n$$\nx^2\n$$\n\nafter";
        let (_typst, map) = markdown_to_typst(md, None);
        // Display math should produce a source map block
        assert!(
            map.blocks.len() >= 2,
            "should have at least 2 blocks (paragraph + math), got: {}",
            map.blocks.len()
        );
        // No overlaps
        for pair in map.blocks.windows(2) {
            assert!(
                pair[0].typst_byte_range.end <= pair[1].typst_byte_range.start,
                "overlapping typst ranges: {:?} and {:?}",
                pair[0].typst_byte_range,
                pair[1].typst_byte_range,
            );
        }
    }

    #[test]
    fn test_image_basic() {
        let md = "![alt](photo.png)";
        let available: HashSet<String> = ["photo.png".to_string()].into_iter().collect();
        let typst = markdown_to_typst(md, Some(&available)).0;
        assert!(
            typst.contains("#align(center)[#image(\"photo.png\")]"),
            "should contain #image() call, got: {typst}"
        );
    }

    #[test]
    fn test_image_alt_suppressed() {
        let md = "![alt text](photo.png)";
        let available: HashSet<String> = ["photo.png".to_string()].into_iter().collect();
        let typst = markdown_to_typst(md, Some(&available)).0;
        assert!(
            !typst.contains("alt text"),
            "alt text should be suppressed, got: {typst}"
        );
    }

    #[test]
    fn test_image_missing() {
        let md = "![alt](missing.png)";
        let available: HashSet<String> = HashSet::new();
        let typst = markdown_to_typst(md, Some(&available)).0;
        assert!(
            typst.contains("#image-placeholder("),
            "missing image should produce placeholder, got: {typst}"
        );
        assert!(
            typst.contains("missing.png"),
            "placeholder should contain path, got: {typst}"
        );
    }

    #[test]
    fn test_image_no_available_images() {
        let md = "![alt](photo.png)";
        let typst = markdown_to_typst(md, None).0;
        assert!(
            typst.contains("#image-placeholder("),
            "no available images should produce placeholder, got: {typst}"
        );
    }

    #[test]
    fn test_extract_image_paths() {
        let md = "![a](img1.png)\n\n![b](img2.jpg)\n\n![c](img1.png)";
        let paths = extract_image_paths(md);
        assert_eq!(paths.len(), 2, "should deduplicate: {paths:?}");
        assert!(paths.contains(&"img1.png".to_string()));
        assert!(paths.contains(&"img2.jpg".to_string()));
    }

    #[test]
    fn test_extract_image_paths_empty() {
        let md = "No images here.";
        let paths = extract_image_paths(md);
        assert!(paths.is_empty());
    }
}