kglite 0.17.11

Pure-Rust embedded Cypher knowledge graph engine with in-memory, mmap, and disk storage, and agent-facing schema introspection
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
//! The block tree: `parse_blocks(body) -> BlockTree`, a pure function.
//!
//! Every range is a byte range into the `body` that was passed in, so
//! `&body[node.range]` is the verbatim source of that node. Ranges are what
//! this module is *for*: the structure profile derives nodes whose `text` must
//! be the author's own markdown, and a parser that hands back rendered strings
//! cannot provide that.
//!
//! Parser options: **`ENABLE_TABLES` only.**
//! - `ENABLE_GFM` is off because it swallows callouts: `> [!note]\n> body`
//!   loses its marker line entirely, and `> [!warning] Be careful` is not
//!   recognised at all (GitHub alerts have no titles). Callouts are parsed here
//!   from the blockquote's own source range instead.
//! - `ENABLE_WIKILINKS` is off because link semantics live in `okf::links`.
//!   Turning it on changes only the *inline* event stream, and this module
//!   reads inline content by slicing ranges, so it would buy nothing while
//!   adding a second place where wikilink syntax is decided.
//! - `ENABLE_FOOTNOTES` is off: a footnote definition would become its own
//!   block kind and change paragraph boundaries, which no rule asks for yet.

use pulldown_cmark::{CodeBlockKind, Event, Options, Parser, Tag, TagEnd};
use regex::Regex;
use std::ops::Range;
use std::sync::OnceLock;

/// One note body's blocks, headings, block ids, comments and directives.
///
/// `blocks` is in document order. A block's `heading` and `inside` are indices
/// into `headings` and `blocks` respectively, so attribution ("which section is
/// this in?") is a lookup rather than a second parse.
#[derive(Debug, Default, PartialEq, Eq)]
pub(crate) struct BlockTree {
    pub headings: Vec<Heading>,
    pub blocks: Vec<Block>,
    pub block_ids: Vec<BlockId>,
    /// `%%…%%` spans, in document order. Kept apart from `blocks` because a
    /// comment can be *inline* — inside a paragraph, a list item or a table
    /// cell — so it is a range to exclude from scanning, not a sibling block.
    pub comments: Vec<Range<usize>>,
    /// Inline `` `code` `` spans, backticks included, in document order. A code
    /// span is rendered literally, so nothing written inside one is a link, a
    /// tag or an attachment — but the span itself is ordinary inline content of
    /// the block around it, which is why these are ranges to mask rather than
    /// blocks or skipped regions: `` [`file.md`](file.md) `` is still a link.
    pub code_spans: Vec<Range<usize>>,
    /// VAULT.md §9 findings the block model itself produced — today only a
    /// `<!-- kglite heading -->` with nothing below it to promote. They are
    /// here and not in the caller because only this pass knows what followed
    /// the marker: by the time anyone else sees the tree, a promotion either
    /// happened or left no trace of having been asked for.
    pub warnings: Vec<String>,
    /// `<!-- kglite … -->` blocks, in document order (VAULT.md §5.8). Unlike
    /// [`BlockTree::comments`] these keep their [`Block`] — a directive is one
    /// whole HTML block and nothing else, which is exactly what makes it
    /// addressable as "this block is metadata, drop it".
    pub directives: Vec<Directive>,
}

/// One `<!-- kglite <key>[: <value>] -->` block (VAULT.md §5.8).
///
/// Recorded here and given meaning elsewhere: this module decides only that
/// the author wrote the documented shape on a line of its own.
#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Directive {
    /// The key as written. **Empty** for `<!-- kglite -->`, which names none —
    /// the shape is recorded anyway so the build can say so (§9).
    pub key: String,
    /// Everything after the first `:`, trimmed; `None` when the directive
    /// carries no `:` at all. Raw: the value's own grammar is §4.2's, and
    /// parsing it is the consumer's job.
    pub raw_value: Option<String>,
    /// The whole HTML block, its trailing newline included — the range a
    /// consumer subtracts to drop the directive from a text property.
    pub range: Range<usize>,
    /// Index into [`BlockTree::blocks`] of the block this directive is.
    pub block: usize,
}

/// An ATX or setext heading.
#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Heading {
    pub level: u8,
    /// The heading's text with the optional ATX closing `#` sequence removed,
    /// per CommonMark. `### #` therefore has an **empty** `text` — the lone `#`
    /// is a closing sequence, not a title. `raw` keeps it.
    pub text: String,
    /// The verbatim inline source between the ATX opening marks and the end of
    /// the line (closing sequence *not* stripped); for a setext heading, the
    /// content lines above the underline. Equal to `text` in the common case.
    pub raw: String,
    /// This heading's `text` preceded by its ancestors' — the components
    /// Obsidian joins with `#` to address a nested heading (`[[Note#A#B]]`).
    pub path: Vec<String>,
    /// The whole heading line (both lines, for setext), trailing newline
    /// included.
    pub range: Range<usize>,
    /// From the end of the heading line to the start of the next heading of
    /// the same or a higher level, or to the end of the body.
    pub body_range: Range<usize>,
}

/// A block-level node, in document order.
#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Block {
    pub kind: BlockKind,
    pub range: Range<usize>,
    /// Index into [`BlockTree::headings`] of the heading whose section this
    /// block sits in; `None` before the body's first heading.
    pub heading: Option<usize>,
    /// Index into [`BlockTree::blocks`] of the enclosing container block
    /// (blockquote, list, table); `None` at the top level.
    pub inside: Option<usize>,
}

#[derive(Debug, PartialEq, Eq)]
pub(crate) enum BlockKind {
    Paragraph,
    Fence(Fence),
    BlockQuote(BlockQuote),
    /// Only lists that are not themselves inside another list get a block;
    /// nested lists hang off [`ListItem::children`].
    List(List),
    Table(Table),
    /// A `<div>…` block. Its source text is still scanned by `okf::links`
    /// (VAULT.md §1.4) — the range is here so the structure pass can tell
    /// prose from markup.
    HtmlBlock,
    /// A four-space-indented code block. Also still scanned by `okf::links`
    /// (VAULT.md §5.1).
    IndentedCode,
}

#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Fence {
    /// The info string verbatim (`python`, `cypher title="x"`, or empty).
    pub info: String,
    /// The info string's first whitespace-delimited token, case preserved.
    pub lang: Option<String>,
    /// The fence's content, without the opening and closing fence lines.
    ///
    /// Caveat for a fence indented inside a list item: the slice keeps the
    /// container's indentation on every line after the first, because the
    /// range spans the source between the first and last content bytes.
    pub code_range: Range<usize>,
}

#[derive(Debug, PartialEq, Eq)]
pub(crate) struct BlockQuote {
    pub callout: Option<Callout>,
    /// The quote's body with the callout marker line removed; identical to the
    /// block's `range` when there is no callout. The `>` prefixes of every
    /// line are still in the slice — stripping them is presentation, and the
    /// caller decides whether it wants the source or the rendered text.
    pub inner_text_range: Range<usize>,
}

/// `> [!type]` — Obsidian's callout marker. The kind is arbitrary and
/// lowercased (Obsidian matches its 13 built-ins case-insensitively, and a
/// converter is free to emit its own, e.g. `[!versionadded]`).
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct Callout {
    pub kind: String,
    pub title: Option<String>,
    /// `'+'` (starts expanded) or `'-'` (starts folded); `None` for a callout
    /// that is not foldable.
    pub fold: Option<char>,
}

#[derive(Debug, PartialEq, Eq)]
pub(crate) struct List {
    pub ordered: bool,
    /// The first number of an ordered list (`3.` → `Some(3)`); `None` when
    /// unordered.
    pub start: Option<u64>,
    pub items: Vec<ListItem>,
}

#[derive(Debug, PartialEq, Eq)]
pub(crate) struct ListItem {
    pub range: Range<usize>,
    /// The item's own first paragraph — the step text, before any nested list
    /// or fenced block. `None` for an item that opens directly with one.
    pub text_range: Option<Range<usize>>,
    pub children: Vec<List>,
}

#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Table {
    pub header: Vec<Cell>,
    pub rows: Vec<Vec<Cell>>,
}

/// One table cell. `text` is the raw source, trimmed — `[[Note]]`, `![[x.png]]`
/// and `` `code` `` are left exactly as written, because resolving them is the
/// link pass's job and a cell's value is whatever the author typed.
#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Cell {
    pub text: String,
    pub range: Range<usize>,
}

/// `^block-id` — Obsidian's addressable anchor (`[[Note#^id]]`).
#[derive(Debug, PartialEq, Eq)]
pub(crate) struct BlockId {
    /// Latin letters, digits and dashes only, per Obsidian. `^my_id` is not a
    /// block id.
    pub id: String,
    /// Index into [`BlockTree::blocks`] of the block the id addresses.
    pub attaches_to: Option<usize>,
    /// The `^id` token itself, caret included.
    pub range: Range<usize>,
    /// True when the id sits alone on its own line — Obsidian's placement for
    /// a table, a code block or a quote, which addresses the block *before*
    /// it. False when it trails a paragraph or a list item, which it addresses
    /// directly. The paragraph an own-line id forms is still in `blocks`, so a
    /// caller assembling section text skips it by this flag.
    pub own_line: bool,
}

fn callout_re() -> &'static Regex {
    static RE: OnceLock<Regex> = OnceLock::new();
    RE.get_or_init(|| Regex::new(r"^\s*>\s*\[!([A-Za-z0-9_-]+)\]([+-])?\s*(.*)$").unwrap())
}

fn block_id_re() -> &'static Regex {
    static RE: OnceLock<Regex> = OnceLock::new();
    // Obsidian: "Block identifiers can only consist of Latin letters, numbers,
    // and dashes." The leading space is required — `x^id` is not an anchor.
    RE.get_or_init(|| Regex::new(r"(?:^|\s)(\^([A-Za-z0-9-]+))\s*$").unwrap())
}

/// Parse a note body into its block tree. Pure: no I/O, no configuration, and
/// the same body always yields the same tree.
pub(crate) fn parse_blocks(body: &str) -> BlockTree {
    let mut tree = Walker::default().run(body);
    tree.comments = scan_comments(body, &tree.blocks);
    drop_commented_headings(&mut tree, body.len());
    tree.block_ids = scan_block_ids(body, &tree.blocks);
    tree.directives = scan_directives(body, &tree.blocks);
    promote_marked_headings(&mut tree, body);
    tree
}

/// Drop the headings a `%%comment%%` hides, and rebuild what was derived from
/// them.
///
/// VAULT.md §5.7: nothing is read out of a comment — a heading included — but
/// CommonMark knows nothing of `%%`, so the parser reports the `# Hidden` in
/// `%%\n# Hidden\n%%` as an ordinary heading, and it would then title the note
/// and name a section. Paths, section extents and each block's heading are all
/// derived from the heading *sequence*, so they are recomputed against the
/// filtered one rather than patched.
fn drop_commented_headings(tree: &mut BlockTree, body_len: usize) {
    let comments = std::mem::take(&mut tree.comments);
    let hidden = |h: &Heading| {
        comments
            .iter()
            .any(|c| c.start <= h.range.start && h.range.end <= c.end)
    };
    if tree.headings.iter().any(&hidden) {
        tree.headings.retain(|heading| !hidden(heading));
        recompute_heading_model(tree, body_len);
    }
    tree.comments = comments;
}

/// Recompute everything derived from the heading **sequence**: each heading's
/// ancestor path and body extent, and each block's enclosing heading.
///
/// The walk computes these as it goes, with a stack; both passes that change
/// the sequence afterwards — dropping a commented heading, promoting a marked
/// paragraph into one — would otherwise have to patch four things consistently.
/// Levels and ranges are the inputs and are never touched here.
fn recompute_heading_model(tree: &mut BlockTree, body_len: usize) {
    let mut stack: Vec<(u8, usize)> = Vec::new();
    for index in 0..tree.headings.len() {
        let (level, start, end) = {
            let heading = &tree.headings[index];
            (heading.level, heading.range.start, heading.range.end)
        };
        while let Some(&(open_level, open)) = stack.last() {
            if open_level < level {
                break;
            }
            tree.headings[open].body_range.end = start;
            stack.pop();
        }
        let mut path: Vec<String> = stack
            .iter()
            .map(|&(_, i)| tree.headings[i].text.clone())
            .collect();
        path.push(tree.headings[index].text.clone());
        tree.headings[index].path = path;
        tree.headings[index].body_range = end..body_len;
        stack.push((level, index));
    }
    for block in &mut tree.blocks {
        let after = tree
            .headings
            .partition_point(|h| h.range.start <= block.range.start);
        block.heading = (after > 0).then(|| after - 1);
    }
}

/// The directive key that promotes the line below it to a heading (VAULT.md
/// §5.8).
const HEADING_MARKER: &str = "heading";

/// `<!-- kglite heading -->` — promote the first line of the paragraph below
/// the marker to a heading at the enclosing heading's level + 1 (VAULT.md
/// §5.8).
///
/// Done **here**, in the block tree, so that nothing downstream has a second
/// kind of heading to know about: sections, ids, `key_from_heading:`, table
/// attachment and `[[Note#Name]]` all read the heading model and get the same
/// answer they would have for an ATX line. The body itself is untouched, so an
/// export still writes the file back byte for byte.
///
/// Levels come from the headings the **author wrote**, not from the sequence
/// as it grows: two markers under one `###` are two `####` siblings, which is
/// the shape a converted API page has, and reading the running sequence would
/// nest the second one inside the first.
fn promote_marked_headings(tree: &mut BlockTree, body: &str) {
    let authored: Vec<(usize, u8)> = tree
        .headings
        .iter()
        .map(|h| (h.range.start, h.level))
        .collect();
    let markers: Vec<usize> = tree
        .directives
        .iter()
        .filter(|d| d.key == HEADING_MARKER)
        .map(|d| d.block)
        .collect();
    let mut minted: Vec<Heading> = Vec::new();
    for marker in markers {
        let Some(range) = promotable_line(tree, body, marker) else {
            tree.warnings.push(
                "`<!-- kglite heading -->` is not followed by a paragraph, so there is no \
                 line to promote (VAULT.md §5.8)"
                    .to_string(),
            );
            continue;
        };
        let raw = body[range.clone()].trim().to_string();
        let enclosing = authored
            .iter()
            .rev()
            .find(|(start, _)| *start < range.start)
            .map(|(_, level)| *level);
        minted.push(Heading {
            // A heading deeper than 6 has no markdown spelling at all, so the
            // nesting it would claim is not addressable either; the cap keeps
            // `level` a fact about markdown rather than about this rule.
            level: enclosing.map_or(1, |level| level.saturating_add(1).min(6)),
            text: strip_surrounding_bold(&raw).to_string(),
            raw,
            path: Vec::new(),
            body_range: range.end..body.len(),
            range: range.clone(),
        });
        // Whatever followed the promoted line stays a paragraph; a paragraph
        // that was only that line is left **empty** rather than removed,
        // because every `inside`, `attaches_to` and `Directive::block` is an
        // index into `blocks` and removing one would move all of them.
        tree.blocks[marker + 1].range.start = range.end;
    }
    if minted.is_empty() {
        return;
    }
    tree.headings.extend(minted);
    tree.headings.sort_by_key(|heading| heading.range.start);
    recompute_heading_model(tree, body.len());
}

/// The first line of the paragraph a marker sits above, or `None` when there
/// is no such paragraph.
///
/// "The paragraph below" is the **next block**, and it has to be a top-level
/// paragraph with no heading written between the two: a marker above a list,
/// a table, a fence or another directive has nothing to promote, and one whose
/// section ends before the next paragraph is pointing across a heading.
fn promotable_line(tree: &BlockTree, body: &str, marker: usize) -> Option<Range<usize>> {
    if tree.blocks[marker].inside.is_some() {
        return None;
    }
    let next = tree.blocks.get(marker + 1)?;
    if !matches!(next.kind, BlockKind::Paragraph) || next.inside.is_some() {
        return None;
    }
    let after_marker = tree.blocks[marker].range.end;
    if tree
        .headings
        .iter()
        .any(|h| h.range.start >= after_marker && h.range.start < next.range.start)
    {
        return None;
    }
    let line = &body[next.range.clone()];
    let end = match line.find('\n') {
        Some(at) => next.range.start + at + 1,
        None => next.range.end,
    };
    // A blank first line is no line: promoting it would mint a heading with
    // no text, which nothing can address.
    (!body[next.range.start..end].trim().is_empty()).then_some(next.range.start..end)
}

/// A line's own `**bold**` markers, and only those: `**a** and **b**` is not a
/// bold line, and a code span or a link inside the line is the heading's text.
fn strip_surrounding_bold(line: &str) -> &str {
    let Some(inner) = line.strip_prefix("**").and_then(|r| r.strip_suffix("**")) else {
        return line;
    };
    if inner.is_empty() || inner.contains("**") {
        return line;
    }
    inner
}

// ---------------------------------------------------------------------------
// The walk
// ---------------------------------------------------------------------------

/// A list under construction. Lists nest, so these stack; only the outermost
/// one owns a [`Block`].
#[derive(Default)]
struct ListBuilder {
    ordered: bool,
    start: Option<u64>,
    items: Vec<ListItem>,
    open_item: Option<OpenItem>,
}

struct OpenItem {
    range: Range<usize>,
    text_range: Option<Range<usize>>,
    /// Set once the item's leading text is over — at its first child block.
    /// Without it, a nested list's own text would extend the parent item's.
    text_done: bool,
    children: Vec<List>,
}

/// A code block under construction. The info string comes from the source, the
/// content range from the `Text` events, which exclude the fence lines.
struct CodeBuilder {
    fenced: bool,
    range: Option<Range<usize>>,
}

#[derive(Default)]
struct TableBuilder {
    header: Vec<Cell>,
    rows: Vec<Vec<Cell>>,
    row: Vec<Cell>,
    in_head: bool,
}

#[derive(Default)]
struct Walker {
    headings: Vec<Heading>,
    /// (level, index) of the headings still open, outermost first.
    heading_stack: Vec<(u8, usize)>,
    blocks: Vec<Block>,
    /// Indices of blocks whose `End` event has not arrived yet.
    open_blocks: Vec<usize>,
    lists: Vec<ListBuilder>,
    table: Option<TableBuilder>,
    code: Option<CodeBuilder>,
    code_spans: Vec<Range<usize>>,
}

impl Walker {
    fn run(mut self, body: &str) -> BlockTree {
        let mut opts = Options::empty();
        opts.insert(Options::ENABLE_TABLES);
        for (event, range) in Parser::new_ext(body, opts).into_offset_iter() {
            match event {
                Event::Start(tag) => self.start(body, tag, range),
                Event::End(tag) => self.end(body, tag, range),
                Event::Text(_) if self.code.is_some() => self.extend_code(range),
                Event::Code(_) => {
                    self.code_spans.push(range.clone());
                    self.extend_item_text(range);
                }
                Event::Rule => self.item_text_done(),
                _ => self.extend_item_text(range),
            }
        }
        BlockTree {
            headings: self.headings,
            blocks: self.blocks,
            code_spans: self.code_spans,
            ..BlockTree::default()
        }
    }

    /// Reserve a block slot at `Start`, so that document order and the indices
    /// children use for `inside` are both settled before the block's contents
    /// are known.
    fn open(&mut self, range: Range<usize>) -> usize {
        let index = self.blocks.len();
        self.blocks.push(Block {
            kind: BlockKind::Paragraph,
            range,
            heading: self.heading_stack.last().map(|&(_, i)| i),
            inside: self.open_blocks.last().copied(),
        });
        self.open_blocks.push(index);
        index
    }

    fn close(&mut self, kind: BlockKind) {
        if let Some(index) = self.open_blocks.pop() {
            self.blocks[index].kind = kind;
        }
    }

    fn start(&mut self, body: &str, tag: Tag<'_>, range: Range<usize>) {
        match tag {
            Tag::Paragraph => {
                self.claim_item_text(&range);
                self.open(range);
            }
            Tag::Heading { level, .. } => {
                self.item_text_done();
                self.push_heading(body, level as u8, range);
            }
            Tag::CodeBlock(kind) => {
                self.item_text_done();
                self.code = Some(CodeBuilder {
                    fenced: matches!(kind, CodeBlockKind::Fenced(_)),
                    range: None,
                });
                self.open(range);
            }
            Tag::BlockQuote(_) | Tag::HtmlBlock => {
                self.item_text_done();
                self.open(range);
            }
            Tag::Table(_) => {
                self.item_text_done();
                self.table = Some(TableBuilder::default());
                self.open(range);
            }
            Tag::List(first) => {
                self.item_text_done();
                if self.lists.is_empty() {
                    self.open(range);
                }
                self.lists.push(ListBuilder {
                    ordered: first.is_some(),
                    start: first,
                    ..ListBuilder::default()
                });
            }
            Tag::Item => {
                if let Some(list) = self.lists.last_mut() {
                    list.open_item = Some(OpenItem {
                        range,
                        text_range: None,
                        text_done: false,
                        children: Vec::new(),
                    });
                }
            }
            Tag::TableHead => {
                if let Some(t) = self.table.as_mut() {
                    t.in_head = true;
                }
            }
            Tag::TableRow => {
                if let Some(t) = self.table.as_mut() {
                    t.row = Vec::new();
                }
            }
            Tag::TableCell => {
                let cell = trimmed_cell(body, range);
                if let Some(t) = self.table.as_mut() {
                    t.row.push(cell);
                }
            }
            // Emphasis, links, images: inline, and part of a tight list item's
            // text — their range spans the whole construct, including the
            // syntax the `Text` events drop.
            _ => self.extend_item_text(range),
        }
    }

    fn end(&mut self, body: &str, tag: TagEnd, range: Range<usize>) {
        match tag {
            TagEnd::Paragraph => self.close(BlockKind::Paragraph),
            TagEnd::HtmlBlock => self.close(BlockKind::HtmlBlock),
            TagEnd::CodeBlock => self.close_code_block(body, &range),
            TagEnd::BlockQuote(_) => {
                let kind = block_quote(body, &range);
                self.close(kind);
            }
            TagEnd::Table => self.close_table(),
            TagEnd::List(_) => self.close_list(),
            TagEnd::Item => self.close_item(range),
            TagEnd::TableHead => {
                if let Some(t) = self.table.as_mut() {
                    t.header = std::mem::take(&mut t.row);
                    t.in_head = false;
                }
            }
            TagEnd::TableRow => {
                if let Some(t) = self.table.as_mut() {
                    let row = std::mem::take(&mut t.row);
                    if !t.in_head {
                        t.rows.push(row);
                    }
                }
            }
            _ => {}
        }
    }

    fn extend_code(&mut self, range: Range<usize>) {
        if let Some(code) = self.code.as_mut() {
            code.range = Some(match code.range.take() {
                Some(r) => r.start..range.end,
                None => range,
            });
        }
    }

    /// Grow the open list item's text span. Only a *tight* item needs this:
    /// its text arrives with no enclosing `Paragraph` event to give it a range.
    fn extend_item_text(&mut self, range: Range<usize>) {
        let Some(item) = self.lists.last_mut().and_then(|l| l.open_item.as_mut()) else {
            return;
        };
        if item.text_done {
            return;
        }
        item.text_range = Some(match item.text_range.take() {
            // `max`, not the new end: an inline construct's own `Start` spans
            // the whole of it, and the `Text` events nested inside it end
            // earlier — `[Docs](url)` would otherwise shrink back to `[Docs`.
            Some(r) => r.start..r.end.max(range.end),
            None => range,
        });
    }

    fn claim_item_text(&mut self, range: &Range<usize>) {
        if let Some(item) = self.lists.last_mut().and_then(|l| l.open_item.as_mut()) {
            if !item.text_done {
                item.text_range = Some(range.clone());
                item.text_done = true;
            }
        }
    }

    fn item_text_done(&mut self) {
        if let Some(item) = self.lists.last_mut().and_then(|l| l.open_item.as_mut()) {
            item.text_done = true;
        }
    }

    fn push_heading(&mut self, body: &str, level: u8, range: Range<usize>) {
        while let Some(&(open_level, index)) = self.heading_stack.last() {
            if open_level < level {
                break;
            }
            self.headings[index].body_range.end = range.start;
            self.heading_stack.pop();
        }
        let (text, raw) = heading_source(&body[range.clone()]);
        let mut path: Vec<String> = self
            .heading_stack
            .iter()
            .map(|&(_, i)| self.headings[i].text.clone())
            .collect();
        path.push(text.clone());
        self.heading_stack.push((level, self.headings.len()));
        self.headings.push(Heading {
            level,
            text,
            raw,
            path,
            body_range: range.end..body.len(),
            range,
        });
    }

    fn close_code_block(&mut self, body: &str, range: &Range<usize>) {
        let built = self.code.take();
        let code_range = built
            .as_ref()
            .and_then(|c| c.range.clone())
            .unwrap_or(range.end..range.end);
        let kind = if built.is_some_and(|c| c.fenced) {
            let info = fence_info(&body[range.clone()]);
            let lang = info.split_whitespace().next().map(str::to_string);
            BlockKind::Fence(Fence {
                info,
                lang,
                code_range,
            })
        } else {
            BlockKind::IndentedCode
        };
        self.close(kind);
    }

    fn close_table(&mut self) {
        let built = self.table.take().unwrap_or_default();
        self.close(BlockKind::Table(Table {
            header: built.header,
            rows: built.rows,
        }));
    }

    fn close_list(&mut self) {
        let Some(built) = self.lists.pop() else {
            return;
        };
        let list = List {
            ordered: built.ordered,
            start: built.start,
            items: built.items,
        };
        match self.lists.last_mut().and_then(|l| l.open_item.as_mut()) {
            Some(parent) => parent.children.push(list),
            None => self.close(BlockKind::List(list)),
        }
    }

    fn close_item(&mut self, range: Range<usize>) {
        let Some(list) = self.lists.last_mut() else {
            return;
        };
        let item = match list.open_item.take() {
            Some(open) => ListItem {
                range: open.range,
                text_range: open.text_range,
                children: open.children,
            },
            None => ListItem {
                range,
                text_range: None,
                children: Vec::new(),
            },
        };
        list.items.push(item);
    }
}

// ---------------------------------------------------------------------------
// Source-level rules the parser does not implement
// ---------------------------------------------------------------------------

/// Split a heading line's source into `(text, raw)`.
///
/// CommonMark's ATX closing sequence is the reason these differ: in `### #`
/// the lone `#` closes the heading rather than titling it, so `text` is empty
/// while `raw` keeps the `#` for a caller that would rather show something.
fn heading_source(src: &str) -> (String, String) {
    let line = src.trim_end();
    let atx = line.trim_start();
    if !atx.starts_with('#') {
        // Setext: the content is everything above the `===`/`---` underline.
        let content = match line.rfind('\n') {
            Some(cut) => &line[..cut],
            None => line,
        };
        let text = content.trim().to_string();
        return (text.clone(), text);
    }
    let hashes = atx.len() - atx.trim_start_matches('#').len();
    let raw = atx[hashes..].trim().to_string();
    (strip_closing_sequence(&raw), raw)
}

/// Drop a trailing run of `#`s that is preceded by whitespace or is the whole
/// text — CommonMark's optional closing sequence. `C#` keeps its `#`.
fn strip_closing_sequence(raw: &str) -> String {
    let trimmed = raw.trim_end();
    let before = trimmed.trim_end_matches('#');
    if before.len() == trimmed.len() {
        return trimmed.to_string();
    }
    if before.is_empty() || before.ends_with(char::is_whitespace) {
        before.trim_end().to_string()
    } else {
        trimmed.to_string()
    }
}

/// The info string of a fenced code block: whatever follows the opening run of
/// backticks or tildes on the fence's first line.
fn fence_info(src: &str) -> String {
    let first = src.trim_start().lines().next().unwrap_or("");
    first
        .trim_start_matches(['`', '~'])
        .trim()
        .replace('\r', "")
}

/// A blockquote's callout marker and body extent, read from its first line.
fn block_quote(body: &str, range: &Range<usize>) -> BlockKind {
    let src = &body[range.clone()];
    let first_line = src.lines().next().unwrap_or("");
    let Some(caps) = callout_re().captures(first_line) else {
        return BlockKind::BlockQuote(BlockQuote {
            callout: None,
            inner_text_range: range.clone(),
        });
    };
    let title = caps[3].trim();
    let callout = Callout {
        kind: caps[1].to_ascii_lowercase(),
        title: (!title.is_empty()).then(|| title.to_string()),
        fold: caps.get(2).and_then(|m| m.as_str().chars().next()),
    };
    // The marker line is the callout's own declaration, not its text; the body
    // starts on the line below it (and is empty for a marker-only callout).
    let after_marker = match src.find('\n') {
        Some(nl) => range.start + nl + 1,
        None => range.end,
    };
    BlockKind::BlockQuote(BlockQuote {
        callout: Some(callout),
        inner_text_range: after_marker.min(range.end)..range.end,
    })
}

fn trimmed_cell(body: &str, range: Range<usize>) -> Cell {
    let raw = &body[range.clone()];
    let start = range.start + (raw.len() - raw.trim_start().len());
    let end = (range.end - (raw.len() - raw.trim_end().len())).max(start);
    Cell {
        text: body[start..end].to_string(),
        range: start..end,
    }
}

/// `%%…%%` spans (Obsidian comments), inline or spanning lines.
///
/// Not the parser's concern — `%%` is ordinary text to CommonMark — so this is
/// a scan of the raw body. Spans that open inside a code block are skipped:
/// `%%` in a shell snippet is code, not a comment. The shortest closing `%%`
/// wins, matching Obsidian's non-greedy behaviour.
fn scan_comments(body: &str, blocks: &[Block]) -> Vec<Range<usize>> {
    let code: Vec<&Range<usize>> = blocks
        .iter()
        .filter(|b| matches!(b.kind, BlockKind::Fence(_) | BlockKind::IndentedCode))
        .map(|b| &b.range)
        .collect();
    let mut out = Vec::new();
    let mut cursor = 0;
    while let Some(offset) = body[cursor..].find("%%") {
        let start = cursor + offset;
        let Some(close) = body[start + 2..].find("%%") else {
            break;
        };
        let end = start + 2 + close + 2;
        if !code.iter().any(|r| r.contains(&start)) {
            out.push(start..end);
        }
        cursor = end;
    }
    out
}

/// `<!-- kglite … -->` directives (VAULT.md §5.8), one per HTML block that is
/// nothing but such a comment.
///
/// Only a *block* qualifies. An inline `<!-- kglite … -->` written inside a
/// paragraph is one of that paragraph's inline events and never opens an HTML
/// block, so prose that happens to mention the syntax stays prose — which is
/// also what keeps this spec from changing what a body renders as.
fn scan_directives(body: &str, blocks: &[Block]) -> Vec<Directive> {
    let mut out = Vec::new();
    for (index, block) in blocks.iter().enumerate() {
        if !matches!(block.kind, BlockKind::HtmlBlock) {
            continue;
        }
        if let Some((key, raw_value)) = directive_parts(&body[block.range.clone()]) {
            out.push(Directive {
                key,
                raw_value,
                range: block.range.clone(),
                block: index,
            });
        }
    }
    out
}

/// Split one HTML block's source into a directive's `(key, value)`.
///
/// The whole block must be the comment — `<!-- kglite chunk --> trailing` is
/// a comment somebody wrote beside prose, not a directive — and the literal
/// `kglite` must be a word of its own, so `<!-- kglitex … -->` is untouched.
/// A key that is not spelled like a frontmatter key (a letter or `_`, then
/// letters, digits, `_`, `-` or `.`) names nothing this format can use, so
/// that comment stays prose too.
fn directive_parts(src: &str) -> Option<(String, Option<String>)> {
    let inner = src
        .trim()
        .strip_prefix("<!--")?
        .strip_suffix("-->")?
        .trim_start();
    let rest = inner.strip_prefix("kglite")?;
    if !rest.is_empty() && !rest.starts_with(char::is_whitespace) {
        return None;
    }
    let rest = rest.trim();
    if rest.is_empty() {
        // `<!-- kglite -->`: the shape without the key it needs.
        return Some((String::new(), None));
    }
    let (key, value) = match rest.split_once(':') {
        Some((key, value)) => (key.trim(), Some(value.trim().to_string())),
        None => (rest, None),
    };
    is_directive_key(key).then(|| (key.to_string(), value))
}

fn is_directive_key(key: &str) -> bool {
    let mut chars = key.chars();
    chars.next().is_some_and(|c| c.is_alphabetic() || c == '_')
        && chars.all(|c| c.is_alphanumeric() || matches!(c, '_' | '-' | '.'))
}

/// `^block-id` anchors, in the three placements Obsidian allows: trailing a
/// paragraph, trailing a list item, or alone on a line after a block that
/// cannot carry one itself (table, code block, quote).
fn scan_block_ids(body: &str, blocks: &[Block]) -> Vec<BlockId> {
    let mut out = Vec::new();
    for (index, block) in blocks.iter().enumerate() {
        match &block.kind {
            BlockKind::Paragraph => {
                let Some(found) = trailing_block_id(body, &block.range) else {
                    continue;
                };
                let own_line = body[block.range.clone()].trim() == &body[found.range.clone()];
                let attaches_to = if own_line {
                    preceding_sibling(blocks, index)
                } else {
                    Some(index)
                };
                out.push(BlockId {
                    attaches_to,
                    own_line,
                    ..found
                });
            }
            BlockKind::List(list) => collect_item_ids(body, list, index, &mut out),
            _ => {}
        }
    }
    out.sort_by_key(|b| b.range.start);
    out
}

fn collect_item_ids(body: &str, list: &List, block: usize, out: &mut Vec<BlockId>) {
    for item in &list.items {
        if let Some(range) = &item.text_range {
            if let Some(found) = trailing_block_id(body, range) {
                out.push(BlockId {
                    attaches_to: Some(block),
                    own_line: false,
                    ..found
                });
            }
        }
        for child in &item.children {
            collect_item_ids(body, child, block, out);
        }
    }
}

/// The nearest preceding block at the same nesting level — what an own-line
/// `^id` addresses.
fn preceding_sibling(blocks: &[Block], index: usize) -> Option<usize> {
    blocks[..index]
        .iter()
        .enumerate()
        .rev()
        .find(|(_, b)| b.inside == blocks[index].inside)
        .map(|(i, _)| i)
}

/// A `^id` at the end of `range`'s last non-blank line, with `attaches_to` and
/// `own_line` left for the caller to decide.
fn trailing_block_id(body: &str, range: &Range<usize>) -> Option<BlockId> {
    let src = body[range.clone()].trim_end();
    let caps = block_id_re().captures(src)?;
    let token = caps.get(1)?;
    Some(BlockId {
        id: caps[2].to_string(),
        attaches_to: None,
        range: range.start + token.start()..range.start + token.end(),
        own_line: false,
    })
}

#[cfg(test)]
#[path = "block_tests.rs"]
mod block_tests;