markdown-tui-explorer 1.21.1

A terminal-based markdown file browser and viewer with search, syntax highlighting, and live reload
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
pub mod highlight;
pub mod math;
pub mod renderer;

use std::cell::Cell;

use ratatui::text::{Span, Text};

/// Position and metadata of a hyperlink within a rendered text block.
///
/// `line` is 0-indexed relative to the start of the containing `DocBlock::Text`.
/// `col_start` and `col_end` are byte-column offsets in the rendered line.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LinkInfo {
    pub line: u32,
    pub col_start: u16,
    pub col_end: u16,
    pub url: String,
    pub text: String,
}

/// A heading anchor within a rendered text block.
///
/// `anchor` is the GitHub-style slug derived from the heading text.
/// `line` is 0-indexed within the containing `DocBlock::Text` block; it is
/// converted to an absolute display line in `MarkdownViewState::load`.
#[derive(Debug, Clone)]
pub struct HeadingAnchor {
    pub anchor: String,
    pub line: u32,
}

/// Opaque identifier for a mermaid diagram block, derived from a hash of its source.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct MermaidBlockId(pub u64);

/// Opaque stable identifier for a table block, derived from a hash of its content.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct TableBlockId(pub u64);

/// Opaque stable identifier for a text block.
///
/// Derived from a hash of `(source_lines, lines.len())` at render time. Stable
/// as long as the document content does not change. Used as the key into
/// [`crate::ui::markdown_view::WrappedTextLayout`] so the draw loop can
/// look up pre-wrapped output without re-wrapping on every frame.
///
/// Analogous to [`TableBlockId`] — same caching contract, same derivation pattern.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct TextBlockId(pub u64);

/// One cell's content as a sequence of styled spans.
pub type CellSpans = Vec<Span<'static>>;

/// Structured representation of a markdown table, parsed once at render time.
///
/// Each cell is a `Vec<Span<'static>>` preserving inline styling (bold, italic,
/// code, links, strikethrough). `natural_widths` is measured from the sum of
/// `unicode_width` across each cell's spans and is used by both renderers.
#[derive(Debug, Clone)]
pub struct TableBlock {
    pub id: TableBlockId,
    pub headers: Vec<CellSpans>,
    pub rows: Vec<Vec<CellSpans>>,
    pub alignments: Vec<pulldown_cmark::Alignment>,
    /// Maximum display width of any cell per column, including the header.
    pub natural_widths: Vec<usize>,
    /// Cached display-line height; updated lazily when the layout width changes.
    pub rendered_height: u32,
    /// 0-indexed source line where the opening `|` row of the table appears.
    pub source_line: u32,
    /// Source lines for each logical row: index 0 is the header, indices
    /// `1..=rows.len()` are body rows.  Length equals `1 + rows.len()`.
    ///
    /// Used by `source_line_at` to map a cursor position inside a rendered
    /// table back to the exact markdown source row, so `enter_edit_mode` drops
    /// the editor cursor on the right line.
    pub row_source_lines: Vec<u32>,
}

/// A single rendered block in a document.
///
/// Documents are modelled as a sequence of these blocks rather than a flat
/// `Text` so that mermaid diagrams and wide tables can be handled independently
/// of the text paragraph.
///
/// `DocBlock` is intentionally not `Send` because the `Mermaid` variant contains
/// a `Cell<u32>`. All `DocBlock` values live on the main async task and are never
/// moved to a worker thread, so this is safe.
#[derive(Debug)]
pub enum DocBlock {
    /// A run of styled ratatui lines, with any hyperlinks and heading anchors
    /// found within them.
    Text {
        /// Stable cache key for the wrapped-layout cache in `MarkdownViewState`.
        ///
        /// Derived at render time from a hash of `(source_lines, lines.len())`.
        /// Stable across redraws as long as the document content is unchanged.
        id: TextBlockId,
        text: Text<'static>,
        links: Vec<LinkInfo>,
        heading_anchors: Vec<HeadingAnchor>,
        /// Parallel to `text.lines`: 0-indexed source line for each rendered row.
        /// `source_lines.len() == text.lines.len()` is a maintained invariant.
        source_lines: Vec<u32>,
        /// Sum of visual rows all `text.lines` entries occupy at the current
        /// layout width after wrapping. Initialised pessimistically to
        /// `text.lines.len()` (the no-wrap count); updated by
        /// [`update_text_layouts`] on every layout-width change. Read by
        /// [`DocBlock::height`] so scroll math advances by visual rows, not
        /// logical lines.
        ///
        /// `Cell` so the value can be updated through a shared `&DocBlock`
        /// reference during the immutable iteration in the draw loop.
        wrapped_height: Cell<u32>,
    },
    /// A reserved space for a mermaid diagram image.
    Mermaid {
        id: MermaidBlockId,
        /// The raw mermaid source, kept so the fallback renderer can display it.
        source: String,
        /// Current reserved height in display lines. Written by
        /// `update_mermaid_heights` each frame from the cache, read by `height()`.
        /// `Cell` avoids `&mut` while still allowing interior mutation during
        /// a shared-reference iteration over the block list.
        cell_height: Cell<u32>,
        /// 0-indexed source line where the opening ` ```mermaid ` fence appears.
        source_line: u32,
    },
    /// A parsed markdown table rendered inline with fair-share column widths.
    Table(TableBlock),
}

impl DocBlock {
    /// Number of display rows this block occupies in the current viewport.
    ///
    /// Always returns visual rows, not logical lines: a Text block whose
    /// long Lines wrap returns the wrapped row count via `wrapped_height`.
    /// [`update_text_layouts`] must run after any `layout_width` change for
    /// this to be accurate; before then, the cell holds the pessimistic
    /// logical-line count.
    pub fn height(&self) -> u32 {
        match self {
            DocBlock::Text { wrapped_height, .. } => wrapped_height.get(),
            DocBlock::Mermaid { cell_height, .. } => cell_height.get(),
            DocBlock::Table(t) => t.rendered_height,
        }
    }
}

/// Pre-wrap every `Text` block's lines at `content_width` and populate the
/// `text_layouts` cache. Updates each block's `wrapped_height` cell so
/// `DocBlock::height()` returns accurate visual-row counts after wrapping.
///
/// Returns `true` when at least one block's height changed, allowing callers to
/// skip expensive downstream work (`recompute_positions`, `total_lines` re-sum)
/// when nothing moved.
///
/// Mermaid and Table blocks are skipped — they track their own heights via
/// `cell_height` / `rendered_height`.
///
/// # Arguments
///
/// * `blocks`       – rendered document block list.
/// * `text_layouts` – cache map from `MarkdownViewState`; entries are
///   inserted/replaced for every Text block. Stale entries for blocks that no
///   longer exist are not pruned here (the cache is cleared on width change or
///   file load, so stale entries cannot accumulate).
/// * `content_width` – effective viewer width in terminal columns (excluding the
///   gutter when line numbers are on).
pub fn update_text_layouts(
    blocks: &[DocBlock],
    text_layouts: &mut std::collections::HashMap<
        TextBlockId,
        crate::ui::markdown_view::WrappedTextLayout,
    >,
    content_width: u16,
) -> bool {
    let mut changed = false;
    for block in blocks {
        if let DocBlock::Text {
            id,
            text,
            source_lines,
            wrapped_height,
            ..
        } = block
        {
            // Build the wrapped layout for this block. Each logical line in
            // `text.lines` may expand to multiple `WrappedLine` rows; we track
            // which logical line each wrapped row came from in `physical_to_logical`.
            let mut wrapped: Vec<crate::text_layout::WrappedLine> =
                Vec::with_capacity(text.lines.len());
            let mut physical_to_logical: Vec<u32> = Vec::with_capacity(text.lines.len());

            for (logical_idx, line) in text.lines.iter().enumerate() {
                let rows = crate::text_layout::wrap_spans(&line.spans, content_width);
                // wrap_spans always returns at least one row per input line.
                // Record the logical index for every produced physical row.
                let row_count = rows.len();
                for row in rows {
                    wrapped.push(row);
                    physical_to_logical.push(crate::cast::u32_sat(logical_idx));
                }
                // Suppress unused-variable warning in release builds.
                let _ = row_count;
            }

            let new_height = crate::cast::u32_sat(wrapped.len());
            // An empty text block has no lines and therefore no wrapped rows;
            // keep height at 0 rather than bumping to 1.
            if new_height != wrapped_height.get() {
                wrapped_height.set(new_height);
                changed = true;
            }

            // Store the source_lines parallel array so callers can derive
            // `physical_to_source` on demand: `source_lines[physical_to_logical[i]]`.
            // We clone source_lines here once; the draw loop reads them without
            // holding a mutable borrow into `blocks`.
            let _ = source_lines; // already accessible via the block itself at call sites
            text_layouts.insert(
                *id,
                crate::ui::markdown_view::WrappedTextLayout {
                    wrapped,
                    physical_to_logical,
                },
            );
        }
    }
    changed
}

/// Synchronise the `cell_height` of every `Mermaid` block in `blocks` with the
/// current cache. Call this before summing `total_lines` so scroll math reflects
/// whatever the cache knows at the time of the draw.
///
/// # Arguments
///
/// * `blocks`     – rendered document blocks for the active tab.
/// * `cache`      – mermaid render cache.
/// * `max_height` – upper bound in display lines (from `Config::mermaid_max_height`).
///
/// Returns `true` when at least one block's height changed, allowing callers to
/// skip expensive downstream work (like `recompute_positions`) when nothing moved.
pub fn update_mermaid_heights(
    blocks: &[DocBlock],
    cache: &crate::mermaid::MermaidCache,
    max_height: u32,
) -> bool {
    let mut changed = false;
    for block in blocks {
        if let DocBlock::Mermaid {
            id,
            source,
            cell_height,
            ..
        } = block
        {
            let new_h = cache.height(*id, source, max_height);
            if new_h != cell_height.get() {
                cell_height.set(new_h);
                changed = true;
            }
        }
    }
    changed
}

/// Return the source line for physical rendered row `local` inside a table,
/// consulting the cached `physical_to_source` mapping from `TableLayout`.
///
/// Falls back to the table's `source_line` when the cached layout is absent or
/// the index is out of range (race condition during first draw).
///
/// # Arguments
///
/// * `t`      – the `TableBlock` whose source lines are stored in
///   `row_source_lines`.
/// * `local`  – 0-based physical row index within the rendered table (same
///   coordinate space as `local_visual` in [`source_line_at`]).
/// * `layout` – optional cached layout from `MarkdownViewState::table_layouts`.
///   When `None` (before first draw), falls back to the old position-based math
///   using `row_source_lines` at fixed indices so behaviour is correct even
///   before wrapping data is available.
fn physical_row_source(
    t: &TableBlock,
    local: usize,
    layout: Option<&crate::ui::markdown_view::TableLayout>,
) -> u32 {
    if let Some(l) = layout {
        // Use the pre-computed mapping built by layout_table.
        return l
            .physical_to_source
            .get(local)
            .copied()
            .unwrap_or(t.source_line);
    }

    // Fallback: no cached layout yet (before first draw). Use the fixed-index
    // approximation with the pre-wrap layout (1 header row, 1 separator, 1 body
    // row each). This matches the old `table_row_source_line` behaviour and is
    // correct for tables that haven't been wrapped yet.
    let header_source = t.row_source_lines.first().copied().unwrap_or(t.source_line);
    let first_body_idx: usize = 3; // top-border + header + separator
    let last_body_idx: usize = first_body_idx + t.rows.len();

    if local <= 2 {
        header_source
    } else if local < last_body_idx {
        let body_index = local - first_body_idx;
        t.row_source_lines
            .get(1 + body_index)
            .copied()
            .unwrap_or(t.source_line)
    } else {
        t.row_source_lines.last().copied().unwrap_or(t.source_line)
    }
}

/// Walk `blocks` and return the 0-indexed source line that corresponds to
/// `visual_row` (the viewer's absolute rendered-line coordinate).
///
/// This is the bridge between the cursor position and the edtui editor row.
///
/// Convenience wrapper around [`source_line_at`] used by tests that need
/// no wrap-aware behaviour (effectively `content_width = 0`).
///
/// # Returns
///
/// The 0-indexed markdown source line. Returns `0` when `visual_row` falls
/// beyond all blocks (documents shorter than expected due to race conditions).
#[allow(dead_code)]
pub fn source_line_at_no_wrap(blocks: &[DocBlock], visual_row: u32) -> u32 {
    source_line_at(
        blocks,
        visual_row,
        &std::collections::HashMap::new(),
        &std::collections::HashMap::new(),
    )
}

/// Map a visual row to its 0-indexed markdown source line.
///
/// `visual_row` is in the same coordinate space as `MarkdownViewState`'s
/// `cursor_line` and `scroll_offset` — visual rows after wrapping.
///
/// For `Text` blocks, the `text_layouts` cache is consulted: `physical_to_logical[local]`
/// gives the logical line index, and `source_lines[logical]` gives the source line.
/// When the cache is absent (before the first draw), falls back to
/// `source_lines.first().copied().unwrap_or(0)`, matching the table fallback pattern.
///
/// `table_layouts` is used to look up `physical_to_source` for table blocks so
/// wrapped-cell tables map physical sub-rows back to the correct markdown source line.
/// Pass empty `HashMap`s in contexts where caches are unavailable (pre-draw, tests).
///
/// # Arguments
///
/// * `blocks`       – rendered document block list.
/// * `visual_row`   – absolute visual row to map (0-indexed, post-wrap).
/// * `text_layouts` – cached text wrap output from `MarkdownViewState`.
/// * `table_layouts` – cached table render output from `MarkdownViewState`.
pub fn source_line_at(
    blocks: &[DocBlock],
    visual_row: u32,
    text_layouts: &std::collections::HashMap<
        TextBlockId,
        crate::ui::markdown_view::WrappedTextLayout,
    >,
    table_layouts: &std::collections::HashMap<TableBlockId, crate::ui::markdown_view::TableLayout>,
) -> u32 {
    let mut offset = 0u32;
    for block in blocks {
        let h = block.height();
        if visual_row < offset + h {
            let local_visual = (visual_row - offset) as usize;
            return match block {
                DocBlock::Text {
                    id, source_lines, ..
                } => {
                    // Consult the pre-wrap cache. If the cache is absent (first draw
                    // race) fall back to the first source line — same pattern as the
                    // table fallback below.
                    if let Some(layout) = text_layouts.get(id) {
                        let logical = layout
                            .physical_to_logical
                            .get(local_visual)
                            .copied()
                            .unwrap_or(0);
                        source_lines.get(logical as usize).copied().unwrap_or(0)
                    } else {
                        source_lines.first().copied().unwrap_or(0)
                    }
                }
                DocBlock::Mermaid {
                    source_line,
                    source,
                    ..
                } => {
                    // Mermaid blocks store their height as visual rows
                    // already (`cell_height`); within the block, each row
                    // corresponds 1:1 to a source line (no wrapping happens).
                    if local_visual == 0 {
                        *source_line
                    } else {
                        let content_count = crate::cast::u32_sat(source.lines().count());
                        let content_offset = (crate::cast::u32_sat(local_visual) - 1)
                            .min(content_count.saturating_sub(1));
                        *source_line + 1 + content_offset
                    }
                }
                DocBlock::Table(t) => {
                    let layout = table_layouts.get(&t.id);
                    physical_row_source(t, local_visual, layout)
                }
            };
        }
        offset += h;
    }
    0
}

/// Locate the first rendered visual row that originates from source line
/// `target_source` (0-indexed). Returns a position in *visual rows* — same
/// coordinate space as `MarkdownViewState::cursor_line` and `scroll_offset`.
///
/// Returns `None` only when `blocks` is empty (no candidate exists at all).
/// For non-empty block lists, out-of-range or gap targets return the closest
/// preceding rendered row whose recorded source number is `<= target_source`.
///
/// For Text blocks the [`WrappedTextLayout`] cache is consulted: the returned
/// index lands on the first wrapped row of the matching logical line. When the
/// cache is absent (before the first draw) the lookup falls back to treating
/// each logical line as 1 visual row — the pessimistic unambiguous approximation.
///
/// # Arguments
///
/// * `blocks`       – the rendered document block list.
/// * `target_source` – 0-indexed source line to locate.
/// * `text_layouts` – cached text wrap output from `MarkdownViewState`; pass an
///   empty `HashMap` in tests or before the first draw.
///
/// # Examples
///
/// ```
/// # use markdown_tui_explorer::markdown::{DocBlock, TextBlockId, logical_line_at_source};
/// # use ratatui::text::{Line, Span, Text};
/// # use std::cell::Cell;
/// let block = DocBlock::Text {
///     id: TextBlockId(0),
///     text: Text::from(vec![
///         Line::from(Span::raw("a")),
///         Line::from(Span::raw("b")),
///     ]),
///     links: vec![],
///     heading_anchors: vec![],
///     source_lines: vec![0, 1],
///     wrapped_height: Cell::new(2),
/// };
/// assert_eq!(logical_line_at_source(&[block], 1, &std::collections::HashMap::new()), Some(1));
/// ```
#[allow(dead_code)]
pub fn logical_line_at_source(
    blocks: &[DocBlock],
    target_source: u32,
    text_layouts: &std::collections::HashMap<
        TextBlockId,
        crate::ui::markdown_view::WrappedTextLayout,
    >,
) -> Option<u32> {
    // A rendered logical line can span multiple source lines (pulldown-cmark
    // joins soft breaks, inline formatting, etc.), so exact matching on
    // `source_lines` would miss any target that lands inside a joined line.
    //
    // Instead, track the last rendered row whose recorded source number is
    // `<= target_source` — that is the row that visually contains the target.
    // Exact hits inside a Mermaid or Table block short-circuit immediately.
    let mut offset = 0u32;
    let mut best: Option<u32> = None;

    for block in blocks {
        let height = block.height();
        match block {
            DocBlock::Text {
                id, source_lines, ..
            } => {
                // Walk logical lines. For each logical line, find the first
                // wrapped row index via the cache (or treat it as 1 row when
                // the cache is absent).
                let layout = text_layouts.get(id);
                // `visual_start_of_logical[i]` = visual row within the block
                // where logical line i begins. Built lazily from physical_to_logical.
                let visual_in_block_of_logical: Box<dyn Fn(usize) -> u32> = if let Some(l) = layout
                {
                    Box::new(|logical_idx: usize| {
                        // Find the first physical row whose logical index equals
                        // `logical_idx`.
                        l.physical_to_logical
                            .iter()
                            .position(|&li| li == crate::cast::u32_sat(logical_idx))
                            .map_or(crate::cast::u32_sat(logical_idx), crate::cast::u32_sat)
                    })
                } else {
                    // Cache absent — treat each logical line as 1 visual row.
                    Box::new(|i: usize| crate::cast::u32_sat(i))
                };

                for (i, &s) in source_lines.iter().enumerate() {
                    let visual_in_block = visual_in_block_of_logical(i);
                    if s == target_source {
                        return Some(offset + visual_in_block);
                    }
                    if s <= target_source {
                        best = Some(offset + visual_in_block);
                    }
                }
            }
            DocBlock::Mermaid {
                source_line,
                source,
                ..
            } => {
                let content_count = crate::cast::u32_sat(source.lines().count());
                let block_end_source = *source_line + 1 + content_count;
                if target_source >= *source_line && target_source < block_end_source {
                    let local = target_source - *source_line;
                    return Some(offset + local.min(height.saturating_sub(1)));
                }
                if *source_line <= target_source {
                    best = Some(offset);
                }
            }
            DocBlock::Table(t) => {
                for (row_idx, &s) in t.row_source_lines.iter().enumerate() {
                    let rendered_row = if row_idx == 0 {
                        1u32 // header is at rendered index 1
                    } else {
                        3 + crate::cast::u32_sat(row_idx - 1)
                    };
                    if rendered_row >= height {
                        break;
                    }
                    if s == target_source {
                        return Some(offset + rendered_row);
                    }
                    if s <= target_source {
                        best = Some(offset + rendered_row);
                    } else {
                        break;
                    }
                }
            }
        }
        offset += height;
    }
    best
}

/// Convert a heading's visible text to a GitHub-style anchor slug.
///
/// Algorithm:
/// 1. Lowercase the text.
/// 2. Remove any character that is not alphanumeric, a space, or a hyphen.
/// 3. Replace spaces with hyphens.
/// 4. Collapse consecutive hyphens into one.
///
/// Non-ASCII letters pass step 2 unchanged (GitHub preserves them). Characters
/// such as `'` and `.` are stripped. Duplicate anchors are not deduplicated
/// here; callers that need disambiguation must track a counter themselves.
///
/// # Examples
///
/// ```
/// # use markdown_tui_explorer::markdown::heading_to_anchor;
/// assert_eq!(heading_to_anchor("Installation Guide"), "installation-guide");
/// assert_eq!(heading_to_anchor("What's New?"), "whats-new");
/// assert_eq!(heading_to_anchor("API v2.0"), "api-v20");
/// ```
pub fn heading_to_anchor(text: &str) -> String {
    let lower = text.to_lowercase();
    // Keep alphanumeric (any script), hyphens, underscores, and spaces;
    // drop everything else. GitHub's slugifier preserves `_` (it's not
    // alphanumeric per Unicode), so headings like `### \`foo_bar\`` slug
    // to `foo_bar` not `foobar`. TOC links of the form
    // `[\`foo_bar\`](#foo_bar)` rely on this.
    //
    // Consecutive hyphens are PRESERVED, not collapsed: GitHub's slug
    // for `# A / B` is `a--b` (the `/` drops, leaving the surrounding
    // spaces to each become `-`). TOC links with double-hyphens rely on
    // this.
    let filtered: String = lower
        .chars()
        .filter(|c| c.is_alphanumeric() || *c == '-' || *c == '_' || *c == ' ')
        .collect();
    let slug = filtered.replace(' ', "-");
    // Strip leading/trailing hyphens that may appear after filtering.
    slug.trim_matches('-').to_string()
}

/// Flatten a cell's spans to a plain string (for search and modal wrapping).
pub fn cell_to_string(spans: &[Span<'static>]) -> String {
    spans.iter().map(|s| s.content.as_ref()).collect()
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::markdown::renderer::render_markdown;
    use crate::theme::{Palette, Theme};

    fn palette() -> Palette {
        Palette::from_theme(Theme::Default)
    }

    fn theme() -> Theme {
        Theme::Default
    }

    // ── heading_to_anchor ────────────────────────────────────────────────────

    #[test]
    fn anchor_plain_words() {
        assert_eq!(
            heading_to_anchor("Installation Guide"),
            "installation-guide"
        );
    }

    #[test]
    fn anchor_apostrophe_stripped() {
        assert_eq!(heading_to_anchor("What's New?"), "whats-new");
    }

    #[test]
    fn anchor_dot_stripped() {
        assert_eq!(heading_to_anchor("API v2.0"), "api-v20");
    }

    #[test]
    fn anchor_already_lowercase() {
        assert_eq!(heading_to_anchor("hello world"), "hello-world");
    }

    /// GitHub's slugifier preserves consecutive hyphens (each space
    /// becomes its own hyphen, runs are NOT collapsed). TOC links of
    /// the form `[A / B](#a--b)` rely on this — the slash drops while
    /// each surrounding space contributes one hyphen.
    #[test]
    fn anchor_consecutive_spaces_preserve_hyphens() {
        assert_eq!(heading_to_anchor("A  B"), "a--b");
        assert_eq!(heading_to_anchor("A / B"), "a--b");
    }

    #[test]
    fn anchor_empty() {
        assert_eq!(heading_to_anchor(""), "");
    }

    // ── Link info collection ─────────────────────────────────────────────────

    #[test]
    fn link_info_internal_anchor() {
        let md = "[Installation](#installation)\n";
        let blocks = render_markdown(md, &palette(), theme());
        let link = match &blocks[0] {
            DocBlock::Text { links, .. } => links.first().expect("link expected"),
            _ => panic!("expected Text block"),
        };
        assert_eq!(link.url, "#installation");
        assert_eq!(link.text, "Installation");
        assert_eq!(link.line, 0);
        // col_start = 0 (nothing before), col_end = len("Installation") = 12
        assert_eq!(link.col_start, 0);
        assert_eq!(link.col_end, 12);
    }

    #[test]
    fn link_info_external_url_preserved() {
        let md = "[Rust](https://rust-lang.org)\n";
        let blocks = render_markdown(md, &palette(), theme());
        let link = match &blocks[0] {
            DocBlock::Text { links, .. } => links.first().expect("link expected"),
            _ => panic!("expected Text block"),
        };
        assert_eq!(link.url, "https://rust-lang.org");
    }

    #[test]
    fn heading_anchor_collected() {
        let md = "# Installation Guide\n\nsome text\n";
        let blocks = render_markdown(md, &palette(), theme());
        let anchor = match &blocks[0] {
            DocBlock::Text {
                heading_anchors, ..
            } => heading_anchors.first().expect("anchor expected"),
            _ => panic!("expected Text block"),
        };
        assert_eq!(anchor.anchor, "installation-guide");
        assert_eq!(anchor.line, 0);
    }

    /// Inline code (`` `text` ``) inside a heading must contribute to the
    /// slug. Without this the anchor is empty and TOC links of the form
    /// `[`kg.nodes`](#kgnodes)` silently fail to resolve, dropping out of
    /// the link picker.
    #[test]
    fn heading_with_inline_code_produces_correct_anchor() {
        let md = "# `kg.nodes`\n\nsome text\n";
        let blocks = render_markdown(md, &palette(), theme());
        let anchor = match &blocks[0] {
            DocBlock::Text {
                heading_anchors, ..
            } => heading_anchors.first().expect("anchor expected"),
            _ => panic!("expected Text block"),
        };
        // The dot is stripped by the slugifier, mirroring GitHub's anchor
        // for a heading like `### \`kg.nodes\``.
        assert_eq!(anchor.anchor, "kgnodes");
    }

    #[test]
    fn heading_mixing_text_and_inline_code_includes_both_in_anchor() {
        let md = "# Use the `Foo` API\n\nsome text\n";
        let blocks = render_markdown(md, &palette(), theme());
        let anchor = match &blocks[0] {
            DocBlock::Text {
                heading_anchors, ..
            } => heading_anchors.first().expect("anchor expected"),
            _ => panic!("expected Text block"),
        };
        assert_eq!(anchor.anchor, "use-the-foo-api");
    }

    /// Underscores must survive slugification — GitHub-style anchors
    /// preserve them (`[\`foo_bar\`](#foo_bar)` is a common pattern in
    /// docs that link to inline-code headings).
    #[test]
    fn heading_with_underscores_preserves_underscores_in_anchor() {
        let md = "# `kg.node_stats`\n\nsome text\n";
        let blocks = render_markdown(md, &palette(), theme());
        let anchor = match &blocks[0] {
            DocBlock::Text {
                heading_anchors, ..
            } => heading_anchors.first().expect("anchor expected"),
            _ => panic!("expected Text block"),
        };
        assert_eq!(anchor.anchor, "kgnode_stats");
    }

    /// Multi-code heading separated by `/` should produce the GitHub
    /// slug with double hyphens around the slash + underscores
    /// preserved inside each code chunk.
    #[test]
    fn heading_with_multi_code_and_slash_produces_correct_anchor() {
        let md = "# `kg.node_stats` / `kg.predicate_stats`\n\nsome text\n";
        let blocks = render_markdown(md, &palette(), theme());
        let anchor = match &blocks[0] {
            DocBlock::Text {
                heading_anchors, ..
            } => heading_anchors.first().expect("anchor expected"),
            _ => panic!("expected Text block"),
        };
        // GitHub: spaces stay as `-`, slash drops, so `a / b` slug is `a--b`.
        assert_eq!(anchor.anchor, "kgnode_stats--kgpredicate_stats");
    }

    /// Compute absolute anchor positions using the same logic as
    /// `MarkdownViewState::recompute_positions`.
    fn absolute_anchor_positions(blocks: &[DocBlock]) -> Vec<(String, u32)> {
        let mut result = Vec::new();
        let mut offset = 0u32;
        for block in blocks {
            if let DocBlock::Text {
                heading_anchors, ..
            } = block
            {
                for ha in heading_anchors {
                    result.push((ha.anchor.clone(), offset + ha.line));
                }
            }
            offset += block.height();
        }
        result
    }

    /// Compute the ACTUAL display line of each heading by scanning every
    /// rendered line for the heading prefix characters used by the renderer.
    fn actual_heading_lines(blocks: &[DocBlock]) -> Vec<(String, u32)> {
        let mut result = Vec::new();
        let mut abs_line = 0u32;
        for block in blocks {
            if let DocBlock::Text { text, .. } = block {
                for line in &text.lines {
                    let content: String = line.spans.iter().map(|s| s.content.as_ref()).collect();
                    // The renderer prefixes headings with "█ ", "▌ ", or "▎ ".
                    for prefix in &["", "", ""] {
                        if content.contains(prefix) {
                            let text_after_prefix =
                                content.split_once(prefix).map_or("", |(_, t)| t).trim();
                            if !text_after_prefix.is_empty() {
                                let anchor = heading_to_anchor(text_after_prefix);
                                result.push((anchor, abs_line));
                            }
                            break;
                        }
                    }
                    abs_line += 1;
                }
            } else {
                abs_line += block.height();
            }
        }
        result
    }

    /// Verify that mouse-click resolution via `source_line_at` with the text
    /// layout cache correctly maps a visual row that follows a wrapping paragraph
    /// to the expected source line, rather than using the naive `scroll_offset +
    /// visual_row` computation.
    ///
    /// Without the fix the old formula (`clicked_line = scroll_offset + row`)
    /// would return a line number shifted by the number of visual rows consumed
    /// by line-wrapping above the clicked position.
    #[test]
    fn wrapped_paragraph_source_line_mapping_is_correct() {
        // Build a document where the first paragraph is longer than
        // content_width so it wraps. The TOC links appear after the paragraph.
        let long_para: String = "word ".repeat(30); // 150 chars → wraps at any realistic width
        let md = format!(
            "# Title\n\n{long_para}\n\n- [Section A](#section-a)\n- [Section B](#section-b)\n\n## Section A\n\nText.\n\n## Section B\n\nMore.\n",
        );

        let blocks = render_markdown(&md, &palette(), theme());

        // Populate the text layout cache at width 80 so visual row mapping
        // is wrap-aware.
        let mut text_layouts = std::collections::HashMap::new();
        update_text_layouts(&blocks, &mut text_layouts, 80);

        let no_table_layouts = std::collections::HashMap::new();

        // Visual rows (scroll_offset = 0, width 80):
        //   row 0: "█ Title"
        //   row 1: ""
        //   row 2: long paragraph (part 1) — source line 2
        //   row 3: long paragraph (part 2) — source line 2 (wrap continuation)
        //   row 4: ""
        //   row 5: "• Section A"   ← source line for list item A
        //   row 6: "• Section B"   ← source line for list item B
        //
        // Both wrap rows of the long paragraph must map to the SAME source line.
        let row2_src = source_line_at(&blocks, 2, &text_layouts, &no_table_layouts);
        let row3_src = source_line_at(&blocks, 3, &text_layouts, &no_table_layouts);
        assert_eq!(
            row2_src, row3_src,
            "both wrap rows of the long paragraph must map to the same source line"
        );

        // Section A (visual row 5) must map to a different source line than Section B (row 6).
        let row5_src = source_line_at(&blocks, 5, &text_layouts, &no_table_layouts);
        let row6_src = source_line_at(&blocks, 6, &text_layouts, &no_table_layouts);
        assert_ne!(
            row5_src, row6_src,
            "Section A and Section B must map to distinct source lines"
        );
    }

    /// Heading anchors must point to the display line that actually shows the
    /// heading text, so that scrolling to `anchor.line` brings the heading to
    /// the top of the viewport.
    ///
    /// This test renders a document with headings before and after a mermaid
    /// diagram, a table, and a fenced code block, then asserts that every
    /// anchor computed by `recompute_positions` matches the actual display line
    /// where the heading text appears.
    #[test]
    fn anchor_positions_match_actual_heading_lines_after_special_blocks() {
        let md = concat!(
            "# Title\n\n",
            "- [Section A](#section-a)\n",
            "- [Section B](#section-b)\n",
            "- [Section C](#section-c)\n",
            "- [Section D](#section-d)\n\n",
            "## Section A\n\n",
            "Some text.\n\n",
            "```mermaid\n",
            "graph LR\n",
            "    A-->B\n",
            "```\n\n",
            "## Section B\n\n",
            "More text.\n\n",
            "| Col1 | Col2 |\n",
            "|------|------|\n",
            "| a    | b    |\n\n",
            "## Section C\n\n",
            "Some code:\n\n",
            "```rust\n",
            "let x = 1;\n",
            "```\n\n",
            "## Section D\n\n",
            "Final text.\n",
        );

        let blocks = render_markdown(md, &palette(), theme());

        let recorded = absolute_anchor_positions(&blocks);
        let actual = actual_heading_lines(&blocks);

        // Every anchor we recorded must have a corresponding entry in `actual`
        // at the same display line.
        for (anchor, recorded_line) in &recorded {
            let found = actual
                .iter()
                .find(|(a, _)| a == anchor)
                .unwrap_or_else(|| panic!("no heading found for anchor '{anchor}'"));
            assert_eq!(
                *recorded_line, found.1,
                "anchor '{anchor}': recorded line {recorded_line} != actual heading line {}",
                found.1,
            );
        }
    }

    // ── logical_line_at_source ───────────────────────────────────────────────

    /// Helper to build a `DocBlock::Text` with explicit source-line mapping.
    fn text_block_with_sources(content: &[&str], sources: &[u32]) -> DocBlock {
        use std::collections::hash_map::DefaultHasher;
        use std::hash::{Hash, Hasher};
        let lines: Vec<ratatui::text::Line<'static>> = content
            .iter()
            .map(|s| ratatui::text::Line::from(ratatui::text::Span::raw(s.to_string())))
            .collect();
        let n = crate::cast::u32_sat(lines.len());
        let mut h = DefaultHasher::new();
        sources.hash(&mut h);
        lines.len().hash(&mut h);
        let id = TextBlockId(h.finish());
        DocBlock::Text {
            id,
            text: ratatui::text::Text::from(lines),
            links: vec![],
            heading_anchors: vec![],
            source_lines: sources.to_vec(),
            wrapped_height: std::cell::Cell::new(n),
        }
    }

    #[test]
    fn logical_line_at_source_finds_text_line() {
        let no_layouts = std::collections::HashMap::new();
        // Single Text block: source lines [0, 1, 2] map to logical lines 0, 1, 2.
        let block = text_block_with_sources(&["a", "b", "c"], &[0, 1, 2]);
        assert_eq!(logical_line_at_source(&[block], 1, &no_layouts), Some(1));
    }

    #[test]
    fn logical_line_at_source_across_blocks() {
        let no_layouts = std::collections::HashMap::new();
        // Two Text blocks: first covers source [0, 1], second covers source [3, 4, 5].
        let b1 = text_block_with_sources(&["a", "b"], &[0, 1]);
        let b2 = text_block_with_sources(&["d", "e", "f"], &[3, 4, 5]);
        // Source line 4 is in the second block at local index 1.
        // First block has height 2, so absolute offset is 2 + 1 = 3.
        assert_eq!(logical_line_at_source(&[b1, b2], 4, &no_layouts), Some(3));
    }

    #[test]
    fn logical_line_at_source_table_header() {
        use crate::markdown::{TableBlock, TableBlockId};
        let no_layouts = std::collections::HashMap::new();
        // Table with row_source_lines = [5, 7, 8]:
        //   rendered row 0: top border
        //   rendered row 1: header (source 5)
        //   rendered row 2: separator
        //   rendered row 3: body[0] (source 7)
        //   rendered row 4: body[1] (source 8)
        //   rendered row 5: bottom border
        let block = DocBlock::Table(TableBlock {
            id: TableBlockId(0),
            headers: vec![vec![ratatui::text::Span::raw("H")]],
            rows: vec![
                vec![vec![ratatui::text::Span::raw("a")]],
                vec![vec![ratatui::text::Span::raw("b")]],
            ],
            alignments: vec![pulldown_cmark::Alignment::None],
            natural_widths: vec![1],
            rendered_height: 6,
            source_line: 5,
            row_source_lines: vec![5, 7, 8],
        });
        // Source line 5 (header) should map to rendered row 1.
        assert_eq!(logical_line_at_source(&[block], 5, &no_layouts), Some(1));
    }

    #[test]
    fn logical_line_at_source_table_body() {
        use crate::markdown::{TableBlock, TableBlockId};
        let no_layouts = std::collections::HashMap::new();
        let block = DocBlock::Table(TableBlock {
            id: TableBlockId(1),
            headers: vec![vec![ratatui::text::Span::raw("H")]],
            rows: vec![
                vec![vec![ratatui::text::Span::raw("a")]],
                vec![vec![ratatui::text::Span::raw("b")]],
            ],
            alignments: vec![pulldown_cmark::Alignment::None],
            natural_widths: vec![1],
            rendered_height: 6,
            source_line: 5,
            row_source_lines: vec![5, 7, 8],
        });
        // Source line 7 (first body row) should map to rendered row 3.
        assert_eq!(logical_line_at_source(&[block], 7, &no_layouts), Some(3));
    }

    #[test]
    fn logical_line_at_source_mermaid_inside() {
        use std::cell::Cell;
        let no_layouts = std::collections::HashMap::new();
        // Mermaid fence at source line 10, content "a\nb\nc" (3 lines).
        // Source range: [10, 14) — fence (10), a (11), b (12), c (13).
        // Block height set to 4 to cover the fence + content.
        let block = DocBlock::Mermaid {
            id: crate::markdown::MermaidBlockId(0),
            source: "a\nb\nc".to_string(),
            cell_height: Cell::new(4),
            source_line: 10,
        };
        // Source line 12 = fence + 2 → local index 2 → logical line 0 + 2 = 2.
        assert_eq!(logical_line_at_source(&[block], 12, &no_layouts), Some(2));
    }

    #[test]
    fn logical_line_at_source_overshoot_falls_back_to_last_line() {
        let no_layouts = std::collections::HashMap::new();
        // A single Text block covering source lines 0–2.
        // Asking for source line 99 beyond the block's last recorded source
        // line should fall back to the closest earlier candidate — the last
        // rendered line whose source <= target.
        let block = text_block_with_sources(&["x", "y", "z"], &[0, 1, 2]);
        assert_eq!(logical_line_at_source(&[block], 99, &no_layouts), Some(2));
    }

    #[test]
    fn logical_line_at_source_non_monotonic_text_block() {
        let no_layouts = std::collections::HashMap::new();
        // List items + End-of-list dip: source_lines dips from 165 back to 160.
        // This mirrors the real renderer output that caused the OAB jump bug.
        let block = text_block_with_sources(&["a", "b", "c"], &[165, 160, 167]);
        // target=163 should land on index 1 (s=160, the largest s <= 163).
        assert_eq!(logical_line_at_source(&[block], 163, &no_layouts), Some(1));
    }

    /// When the same source line appears at multiple positions (e.g. a
    /// heading line + its trailing blank, or a list-End dip), the FIRST
    /// occurrence must win — it's the actual content, not the artifact.
    #[test]
    fn logical_line_at_source_duplicate_source_line_returns_first() {
        let no_layouts = std::collections::HashMap::new();
        // Source line 306 appears at indices 0 and 3 (simulating a heading
        // at index 0 and a list-End dip at index 3).
        let block = text_block_with_sources(
            &["heading", "para1", "para2", "blank-after-list"],
            &[306, 307, 308, 306],
        );
        // Must return the FIRST index (0), not the last (3).
        assert_eq!(logical_line_at_source(&[block], 306, &no_layouts), Some(0));
    }

    /// Same scenario across two blocks: block A has the real line, block B
    /// has the duplicate from a dip. The function must return block A's
    /// match.
    #[test]
    fn logical_line_at_source_duplicate_across_blocks_returns_first() {
        let no_layouts = std::collections::HashMap::new();
        let b1 = text_block_with_sources(&["real content"], &[306]);
        let b2 = text_block_with_sources(&["other", "dip-artifact"], &[310, 306]);
        // b1 height=1, b2 starts at offset 1. Target 306 is in b1 at 0.
        assert_eq!(logical_line_at_source(&[b1, b2], 306, &no_layouts), Some(0));
    }

    #[test]
    fn logical_line_at_source_target_beyond_any_block_is_none() {
        let no_layouts = std::collections::HashMap::new();
        // With no blocks at all there is no candidate anywhere, so None.
        assert_eq!(logical_line_at_source(&[], 5, &no_layouts), None);
    }

    /// `update_text_layouts` must populate the cache and update `wrapped_height`.
    #[test]
    fn update_text_layouts_populates_cache() {
        // A long line that wraps to multiple visual rows must have its
        // block height bumped accordingly so total_lines / scroll math
        // accounts for the extra rows. Without this, scrolling past a
        // wrapped paragraph leaves the next block visually shifted.
        let long = "x".repeat(50); // 50 chars wide
        let blocks = vec![text_block_with_sources(
            &["short", &long, "short"],
            &[0, 1, 2],
        )];
        let mut text_layouts = std::collections::HashMap::new();
        // Width 20: long line wraps to ceil(50/20) = 3 rows.
        let changed = update_text_layouts(&blocks, &mut text_layouts, 20);
        assert!(
            changed,
            "wrapped_height should change from logical (3) to visual (5)"
        );
        assert_eq!(blocks[0].height(), 5, "1 + 3 + 1");

        // Re-running with the same width and populated cache still writes the
        // entry (cache is rebuilt, not consulted here), but height is unchanged.
        let changed_again = update_text_layouts(&blocks, &mut text_layouts, 20);
        assert!(!changed_again, "no-op on second call at same width");

        // Wider width fits the long line on one row again.
        let changed_wider = update_text_layouts(&blocks, &mut text_layouts, 80);
        assert!(changed_wider);
        assert_eq!(blocks[0].height(), 3, "1 + 1 + 1 at 80 cols");
    }

    /// `source_line_at` with the text layout cache maps wrap-continuation rows
    /// back to the originating logical line's source number.
    #[test]
    fn source_line_at_handles_wrapped_text_block() {
        // With wrap, visual rows > logical lines. A query for visual row 2
        // should land on the source line of logical line 1 (the wrapped
        // line), not logical line 2.
        let long = "y".repeat(30);
        let blocks = vec![text_block_with_sources(&["a", &long, "c"], &[10, 20, 30])];
        // Width 10: long wraps to 3 rows. Visual layout:
        //   row 0: "a"           (logical 0, source 10)
        //   row 1: "yyyyyy…"     (logical 1, source 20)
        //   row 2: "yyyyyy…"     (logical 1, source 20)
        //   row 3: "yyyyyy…"     (logical 1, source 20)
        //   row 4: "c"           (logical 2, source 30)
        let mut text_layouts = std::collections::HashMap::new();
        update_text_layouts(&blocks, &mut text_layouts, 10);
        let no_table_layouts = std::collections::HashMap::new();
        assert_eq!(
            source_line_at(&blocks, 0, &text_layouts, &no_table_layouts),
            10
        );
        assert_eq!(
            source_line_at(&blocks, 1, &text_layouts, &no_table_layouts),
            20
        );
        assert_eq!(
            source_line_at(&blocks, 2, &text_layouts, &no_table_layouts),
            20,
            "row 2 is wrap continuation"
        );
        assert_eq!(
            source_line_at(&blocks, 3, &text_layouts, &no_table_layouts),
            20,
            "row 3 is wrap continuation"
        );
        assert_eq!(
            source_line_at(&blocks, 4, &text_layouts, &no_table_layouts),
            30
        );
    }

    #[test]
    fn logical_line_at_source_target_inside_joined_paragraph() {
        let no_layouts = std::collections::HashMap::new();
        // A paragraph whose source spans lines 5–7 but renders as a single
        // joined line (pulldown-cmark merges soft breaks). Only line 5 is
        // recorded; asking for 5, 6, or 7 must still land on the same
        // rendered line. DocBlock is not Clone, so rebuild per assertion.
        for target in [5u32, 6, 7] {
            let block = text_block_with_sources(&["joined paragraph"], &[5]);
            assert_eq!(
                logical_line_at_source(&[block], target, &no_layouts),
                Some(0),
                "target source line {target} should land on the joined paragraph's rendered line 0",
            );
        }
    }

    #[test]
    fn logical_line_at_source_between_blocks_lands_on_previous_last_line() {
        let no_layouts = std::collections::HashMap::new();
        // First block source [0, 1], second block source [10, 11]. Source
        // line 5 falls in the gap; it should land on the last line of the
        // first block (closest candidate at or before 5).
        let b1 = text_block_with_sources(&["a", "b"], &[0, 1]);
        let b2 = text_block_with_sources(&["c", "d"], &[10, 11]);
        assert_eq!(logical_line_at_source(&[b1, b2], 5, &no_layouts), Some(1));
    }
}