rdx-ast 0.1.2-beta.11

AST type definitions for the RDX (Reactive Document eXpressions) specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
use rkyv::Archive;
use serde::{Deserialize, Serialize};

/// rkyv wrapper that stores serde_json types as their JSON string representation.
mod rkyv_json {
    use rkyv::rancor::Fallible;
    use rkyv::string::ArchivedString;
    use rkyv::with::{ArchiveWith, DeserializeWith, SerializeWith};
    use rkyv::{Archive, Place};

    pub struct AsJsonString;

    impl<T: serde::Serialize> ArchiveWith<T> for AsJsonString {
        type Archived = ArchivedString;
        type Resolver = <String as Archive>::Resolver;

        fn resolve_with(field: &T, resolver: Self::Resolver, out: Place<Self::Archived>) {
            // Safety: serde_json::to_string cannot fail for types that already implement Serialize
            // (no IO, no map-key errors). An unwrap is appropriate here.
            let json = serde_json::to_string(field).expect("serde_json::to_string failed");
            ArchivedString::resolve_from_str(&json, resolver, out);
        }
    }

    impl<T: serde::Serialize, S: Fallible<Error: rkyv::rancor::Source> + rkyv::ser::Writer + ?Sized>
        SerializeWith<T, S> for AsJsonString
    {
        fn serialize_with(field: &T, serializer: &mut S) -> Result<Self::Resolver, S::Error> {
            // Safety: see resolve_with — serialization of valid Serialize types cannot fail.
            let json = serde_json::to_string(field).expect("serde_json::to_string failed");
            ArchivedString::serialize_from_str(&json, serializer)
        }
    }

    impl<T: serde::de::DeserializeOwned, D: Fallible + ?Sized> DeserializeWith<ArchivedString, T, D>
        for AsJsonString
    {
        fn deserialize_with(archived: &ArchivedString, _: &mut D) -> Result<T, D::Error> {
            // Safety: the archived string was produced by to_string above, so from_str cannot fail.
            Ok(serde_json::from_str(archived.as_str()).expect("serde_json::from_str failed"))
        }
    }
}

/// Positional data mapping an AST node back to its source `.rdx` file.
/// Line and column numbers are 1-indexed. Offsets are 0-indexed byte offsets.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct Position {
    pub start: Point,
    pub end: Point,
}

#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct Point {
    pub line: usize,
    pub column: usize,
    pub offset: usize,
}

/// The root of an RDX document.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct Root {
    #[serde(rename = "type")]
    pub node_type: RootType,
    #[rkyv(with = rkyv::with::Map<rkyv_json::AsJsonString>)]
    pub frontmatter: Option<serde_json::Value>,
    #[rkyv(omit_bounds)]
    pub children: Vec<Node>,
    pub position: Position,
}

#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub enum RootType {
    #[serde(rename = "root")]
    Root,
}

/// A union of all possible RDX nodes.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
#[serde(tag = "type")]
pub enum Node {
    #[serde(rename = "text")]
    Text(#[rkyv(omit_bounds)] TextNode),
    #[serde(rename = "code_inline")]
    CodeInline(#[rkyv(omit_bounds)] CodeInlineNode),
    #[serde(rename = "code_block")]
    CodeBlock(#[rkyv(omit_bounds)] CodeBlockNode),
    #[serde(rename = "paragraph")]
    Paragraph(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "heading")]
    Heading(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "list")]
    List(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "list_item")]
    ListItem(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "blockquote")]
    Blockquote(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "thematic_break")]
    ThematicBreak(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "html")]
    Html(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "table")]
    Table(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "table_row")]
    TableRow(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "table_cell")]
    TableCell(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "link")]
    Link(#[rkyv(omit_bounds)] LinkNode),
    #[serde(rename = "image")]
    Image(#[rkyv(omit_bounds)] ImageNode),
    #[serde(rename = "emphasis")]
    Emphasis(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "strong")]
    Strong(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "strikethrough")]
    Strikethrough(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "definition_list")]
    DefinitionList(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "definition_term")]
    DefinitionTerm(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "definition_description")]
    DefinitionDescription(#[rkyv(omit_bounds)] StandardBlockNode),
    #[serde(rename = "footnote_definition")]
    FootnoteDefinition(#[rkyv(omit_bounds)] FootnoteNode),
    #[serde(rename = "footnote_reference")]
    FootnoteReference(#[rkyv(omit_bounds)] FootnoteNode),
    #[serde(rename = "math_inline")]
    MathInline(#[rkyv(omit_bounds)] MathNode),
    #[serde(rename = "math_display")]
    MathDisplay(#[rkyv(omit_bounds)] MathDisplayNode),
    #[serde(rename = "citation")]
    Citation(#[rkyv(omit_bounds)] CitationNode),
    #[serde(rename = "cross_ref")]
    CrossRef(#[rkyv(omit_bounds)] CrossRefNode),
    #[serde(rename = "component")]
    Component(#[rkyv(omit_bounds)] ComponentNode),
    #[serde(rename = "variable")]
    Variable(#[rkyv(omit_bounds)] VariableNode),
    #[serde(rename = "error")]
    Error(#[rkyv(omit_bounds)] ErrorNode),
}

/// A standard CommonMark block node.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct StandardBlockNode {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub depth: Option<u8>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ordered: Option<bool>,
    /// For list items: whether a task list checkbox is checked.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub checked: Option<bool>,
    /// For headings: an explicit ID attribute (`# Title {#my-id}`).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[rkyv(omit_bounds)]
    pub children: Vec<Node>,
    pub position: Position,
}

/// An RDX component node.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct ComponentNode {
    pub name: String,
    #[serde(rename = "isInline")]
    pub is_inline: bool,
    #[rkyv(omit_bounds)]
    pub attributes: Vec<AttributeNode>,
    #[rkyv(omit_bounds)]
    pub children: Vec<Node>,
    /// Raw source text of the component body (between open/close tags).
    /// Preserved verbatim for components that need whitespace-sensitive content
    /// (e.g. CodeBlock). Empty for self-closing components.
    #[serde(
        default,
        rename = "rawContent",
        skip_serializing_if = "String::is_empty"
    )]
    pub raw_content: String,
    pub position: Position,
}

/// A single attribute with its own positional data.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct AttributeNode {
    pub name: String,
    #[rkyv(omit_bounds)]
    pub value: AttributeValue,
    pub position: Position,
}

/// Supported attribute value types.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
#[serde(untagged)]
pub enum AttributeValue {
    Null,
    Bool(bool),
    Number(#[rkyv(with = rkyv_json::AsJsonString)] serde_json::Number),
    String(String),
    Array(#[rkyv(with = rkyv_json::AsJsonString)] Vec<serde_json::Value>),
    Object(#[rkyv(with = rkyv_json::AsJsonString)] serde_json::Map<String, serde_json::Value>),
    Variable(#[rkyv(omit_bounds)] VariableNode),
}

/// A footnote node (definition or reference).
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct FootnoteNode {
    pub label: String,
    #[rkyv(omit_bounds)]
    pub children: Vec<Node>,
    pub position: Position,
}

/// A link node with URL and optional title.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct LinkNode {
    pub url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[rkyv(omit_bounds)]
    pub children: Vec<Node>,
    pub position: Position,
}

/// An image node with URL, optional title, and alt text.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct ImageNode {
    pub url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub alt: Option<String>,
    #[rkyv(omit_bounds)]
    pub children: Vec<Node>,
    pub position: Position,
}

/// A fenced code block with optional language, meta string, and display metadata.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct CodeBlockNode {
    pub value: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub lang: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub meta: Option<String>,
    /// Display title or filename (from info string `title="..."`).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// Sorted, deduplicated line numbers to emphasize.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub highlight: Option<Vec<u32>>,
    /// Whether to display line numbers.
    #[serde(rename = "showLineNumbers", skip_serializing_if = "Option::is_none")]
    pub show_line_numbers: Option<bool>,
    /// Whether to render as a unified diff.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub diff: Option<bool>,
    /// Caption text for numbered code listings.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub caption: Option<String>,
    pub position: Position,
}

/// A literal text node.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct TextNode {
    pub value: String,
    pub position: Position,
}

/// An inline code node with optional language hint.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct CodeInlineNode {
    pub value: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub lang: Option<String>,
    pub position: Position,
}

/// A variable interpolation node.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct VariableNode {
    pub path: String,
    pub position: Position,
}

/// An explicit error node for host-level error boundaries.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct ErrorNode {
    pub message: String,
    #[serde(rename = "rawContent")]
    pub raw_content: String,
    pub position: Position,
}

/// A citation reference node containing one or more citation keys.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct CitationNode {
    pub keys: Vec<CitationKey>,
    pub position: Position,
}

/// A single citation key with optional prefix and locator.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct CitationKey {
    pub id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prefix: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub locator: Option<String>,
}

/// A cross-reference node pointing to a labeled element elsewhere in the document.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct CrossRefNode {
    pub target: String,
    pub position: Position,
}

/// An inline math expression node containing raw LaTeX and a structured parse tree.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct MathNode {
    pub raw: String,
    #[rkyv(omit_bounds)]
    pub tree: MathExpr,
    pub position: Position,
}

/// A display math expression node containing raw LaTeX, a structured parse tree, and an optional label.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct MathDisplayNode {
    pub raw: String,
    #[rkyv(omit_bounds)]
    pub tree: MathExpr,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub label: Option<String>,
    pub position: Position,
}

// ---------------------------------------------------------------------------
// Math expression supporting types
// ---------------------------------------------------------------------------

/// A mathematical operator symbol with its classification.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
pub struct MathOperator {
    pub symbol: String,
    pub kind: OperatorKind,
}

/// Classification of a mathematical operator.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum OperatorKind {
    Binary,
    Relation,
    Prefix,
    Postfix,
    Large,
    Punctuation,
}

/// A delimiter character used in fenced expressions.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum Delimiter {
    Paren,
    Bracket,
    Brace,
    Angle,
    Pipe,
    DoublePipe,
    Floor,
    Ceil,
    None,
}

/// Style for fraction rendering.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum FracStyle {
    Display,
    Text,
    Auto,
}

/// Limit placement style for big operators.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum LimitStyle {
    DisplayLimits,
    Limits,
    NoLimits,
}

/// Delimiter style for matrix environments.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum MatrixDelimiters {
    Plain,
    Paren,
    Bracket,
    Brace,
    Pipe,
    DoublePipe,
}

/// Column alignment specifier for array environments.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum ColumnAlign {
    Left,
    Center,
    Right,
}

/// Named math spacing amounts.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum MathSpace {
    Thin,
    Medium,
    Thick,
    Quad,
    QQuad,
    NegThin,
    Custom(String),
}

/// Smash mode indicating which dimension to suppress.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum SmashMode {
    Top,
    Bottom,
    Both,
}

/// Math style (display size) override.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum MathStyle {
    Display,
    Text,
    Script,
    ScriptScript,
}

/// Math font override.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum MathFont {
    Roman,
    Bold,
    Italic,
    BoldItalic,
    SansSerif,
    Monospace,
    Blackboard,
    Calligraphic,
    Fraktur,
    Script,
}

/// Accent mark kind.
#[derive(
    Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[serde(rename_all = "snake_case")]
pub enum AccentKind {
    Hat,
    Tilde,
    Vec,
    Dot,
    Ddot,
    Bar,
    Acute,
    Grave,
    Breve,
    Check,
    WideHat,
    WideTilde,
}

/// A row in an alignment environment (align/alignat).
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct AlignRow {
    #[rkyv(omit_bounds)]
    pub cells: Vec<MathExpr>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub label: Option<String>,
}

/// A row in a cases environment.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
pub struct CaseRow {
    #[rkyv(omit_bounds)]
    pub expr: MathExpr,
    #[rkyv(omit_bounds)]
    pub condition: Option<MathExpr>,
}

/// Structured math expression tree (Section 2.11).
///
/// This is a recursive algebraic type representing the parsed structure of a LaTeX
/// math expression. `Box<MathExpr>` is used for recursive fields to keep the type
/// sized.
#[derive(
    Debug, Clone, PartialEq, Serialize, Deserialize, Archive, rkyv::Serialize, rkyv::Deserialize,
)]
#[rkyv(serialize_bounds(
    __S: rkyv::ser::Writer + rkyv::ser::Allocator + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(deserialize_bounds(
    __D: rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
))]
#[rkyv(bytecheck(bounds(
    __C: rkyv::validation::ArchiveContext + rkyv::rancor::Fallible<Error: rkyv::rancor::Source>,
)))]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum MathExpr {
    // Atoms
    Ident {
        value: String,
    },
    Number {
        value: String,
    },
    Operator(MathOperator),
    Text {
        value: String,
    },

    // Grouping
    Row {
        #[rkyv(omit_bounds)]
        children: Vec<MathExpr>,
    },
    Fenced {
        open: Delimiter,
        close: Delimiter,
        #[rkyv(omit_bounds)]
        body: Vec<MathExpr>,
    },

    // Scripts
    Superscript {
        #[rkyv(omit_bounds)]
        base: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        script: Box<MathExpr>,
    },
    Subscript {
        #[rkyv(omit_bounds)]
        base: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        script: Box<MathExpr>,
    },
    Subsuperscript {
        #[rkyv(omit_bounds)]
        base: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        sub: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        sup: Box<MathExpr>,
    },

    // Layout
    Frac {
        #[rkyv(omit_bounds)]
        numerator: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        denominator: Box<MathExpr>,
        style: FracStyle,
    },
    Sqrt {
        #[rkyv(omit_bounds)]
        index: Option<Box<MathExpr>>,
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },

    // Over/Under
    Overline {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    Underline {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    Overbrace {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        annotation: Option<Box<MathExpr>>,
    },
    Underbrace {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        annotation: Option<Box<MathExpr>>,
    },
    Overset {
        #[rkyv(omit_bounds)]
        over: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        base: Box<MathExpr>,
    },
    Underset {
        #[rkyv(omit_bounds)]
        under: Box<MathExpr>,
        #[rkyv(omit_bounds)]
        base: Box<MathExpr>,
    },
    Accent {
        kind: AccentKind,
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },

    // Big operators
    BigOperator {
        op: MathOperator,
        limits: LimitStyle,
        #[rkyv(omit_bounds)]
        lower: Option<Box<MathExpr>>,
        #[rkyv(omit_bounds)]
        upper: Option<Box<MathExpr>>,
    },

    // Matrices & arrays
    Matrix {
        #[rkyv(omit_bounds)]
        rows: Vec<Vec<MathExpr>>,
        delimiters: MatrixDelimiters,
    },
    Cases {
        #[rkyv(omit_bounds)]
        rows: Vec<CaseRow>,
    },
    Array {
        columns: Vec<ColumnAlign>,
        #[rkyv(omit_bounds)]
        rows: Vec<Vec<MathExpr>>,
    },

    // Alignment environments
    Align {
        #[rkyv(omit_bounds)]
        rows: Vec<AlignRow>,
        numbered: bool,
    },
    Gather {
        #[rkyv(omit_bounds)]
        rows: Vec<MathExpr>,
        numbered: bool,
    },

    // Spacing
    Space(MathSpace),
    Phantom {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    HPhantom {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    VPhantom {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    Smash {
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
        mode: SmashMode,
    },

    // Style overrides
    StyleOverride {
        style: MathStyle,
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    FontOverride {
        font: MathFont,
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },
    Color {
        color: String,
        #[rkyv(omit_bounds)]
        body: Box<MathExpr>,
    },

    // Chemistry
    Chem {
        value: String,
    },

    // Error recovery
    Error {
        raw: String,
        message: String,
    },
}

impl Node {
    /// Returns a mutable reference to this node's children, if it has any.
    pub fn children_mut(&mut self) -> Option<&mut Vec<Node>> {
        match self {
            Node::Paragraph(b)
            | Node::Heading(b)
            | Node::List(b)
            | Node::ListItem(b)
            | Node::Blockquote(b)
            | Node::Html(b)
            | Node::Table(b)
            | Node::TableRow(b)
            | Node::TableCell(b)
            | Node::Emphasis(b)
            | Node::Strong(b)
            | Node::Strikethrough(b)
            | Node::ThematicBreak(b)
            | Node::DefinitionList(b)
            | Node::DefinitionTerm(b)
            | Node::DefinitionDescription(b) => Some(&mut b.children),
            Node::Link(l) => Some(&mut l.children),
            Node::Image(i) => Some(&mut i.children),
            Node::Component(c) => Some(&mut c.children),
            Node::FootnoteDefinition(n) => Some(&mut n.children),
            _ => None,
        }
    }

    /// Returns a reference to this node's children, if it has any.
    pub fn children(&self) -> Option<&[Node]> {
        match self {
            Node::Paragraph(b)
            | Node::Heading(b)
            | Node::List(b)
            | Node::ListItem(b)
            | Node::Blockquote(b)
            | Node::Html(b)
            | Node::Table(b)
            | Node::TableRow(b)
            | Node::TableCell(b)
            | Node::Emphasis(b)
            | Node::Strong(b)
            | Node::Strikethrough(b)
            | Node::ThematicBreak(b)
            | Node::DefinitionList(b)
            | Node::DefinitionTerm(b)
            | Node::DefinitionDescription(b) => Some(&b.children),
            Node::Link(l) => Some(&l.children),
            Node::Image(i) => Some(&i.children),
            Node::Component(c) => Some(&c.children),
            Node::FootnoteDefinition(n) => Some(&n.children),
            _ => None,
        }
    }
}

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

    fn pos(line: usize, col: usize, off: usize) -> Point {
        Point {
            line,
            column: col,
            offset: off,
        }
    }

    fn span(sl: usize, sc: usize, so: usize, el: usize, ec: usize, eo: usize) -> Position {
        Position {
            start: pos(sl, sc, so),
            end: pos(el, ec, eo),
        }
    }

    #[test]
    fn root_serializes_type_field() {
        let root = Root {
            node_type: RootType::Root,
            frontmatter: None,
            children: vec![],
            position: span(1, 1, 0, 1, 1, 0),
        };
        let json = serde_json::to_value(&root).unwrap();
        assert_eq!(json["type"], "root");
        assert!(json["frontmatter"].is_null());
        assert_eq!(json["children"], serde_json::json!([]));
    }

    #[test]
    fn component_node_serializes_correctly() {
        let node = Node::Component(ComponentNode {
            name: "Badge".into(),
            is_inline: false,
            attributes: vec![
                AttributeNode {
                    name: "status".into(),
                    value: AttributeValue::String("beta".into()),
                    position: span(1, 8, 7, 1, 22, 21),
                },
                AttributeNode {
                    name: "active".into(),
                    value: AttributeValue::Bool(true),
                    position: span(1, 23, 22, 1, 36, 35),
                },
            ],
            children: vec![Node::Text(TextNode {
                value: "New Feature".into(),
                position: span(1, 37, 36, 1, 48, 47),
            })],
            raw_content: String::new(),
            position: span(1, 1, 0, 1, 55, 54),
        });

        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "component");
        assert_eq!(json["name"], "Badge");
        assert_eq!(json["isInline"], false);
        assert_eq!(json["attributes"][0]["name"], "status");
        assert_eq!(json["attributes"][0]["value"], "beta");
        assert_eq!(json["attributes"][1]["name"], "active");
        assert_eq!(json["attributes"][1]["value"], true);
        assert_eq!(json["children"][0]["type"], "text");
        assert_eq!(json["children"][0]["value"], "New Feature");
    }

    #[test]
    fn attribute_value_null_serializes_to_null() {
        let val = AttributeValue::Null;
        let json = serde_json::to_value(&val).unwrap();
        assert!(json.is_null());
    }

    #[test]
    fn attribute_value_number() {
        let val = AttributeValue::Number(serde_json::Number::from(42));
        let json = serde_json::to_value(&val).unwrap();
        assert_eq!(json, 42);
    }

    #[test]
    fn attribute_value_json_object() {
        let mut map = serde_json::Map::new();
        map.insert("type".into(), serde_json::Value::String("bar".into()));
        let val = AttributeValue::Object(map);
        let json = serde_json::to_value(&val).unwrap();
        assert_eq!(json["type"], "bar");
    }

    #[test]
    fn attribute_value_json_array() {
        let val = AttributeValue::Array(vec![
            serde_json::Value::from(10),
            serde_json::Value::from(20),
        ]);
        let json = serde_json::to_value(&val).unwrap();
        assert_eq!(json, serde_json::json!([10, 20]));
    }

    #[test]
    fn variable_node_serializes() {
        let node = Node::Variable(VariableNode {
            path: "frontmatter.title".into(),
            position: span(1, 1, 0, 1, 20, 19),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "variable");
        assert_eq!(json["path"], "frontmatter.title");
    }

    #[test]
    fn error_node_serializes() {
        let node = Node::Error(ErrorNode {
            message: "Unclosed tag".into(),
            raw_content: "<Notice>".into(),
            position: span(1, 1, 0, 1, 9, 8),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "error");
        assert_eq!(json["message"], "Unclosed tag");
        assert_eq!(json["rawContent"], "<Notice>");
    }

    #[test]
    fn standard_block_omits_none_fields() {
        let node = Node::Heading(StandardBlockNode {
            depth: Some(2),
            ordered: None,
            checked: None,
            id: None,
            children: vec![],
            position: span(1, 1, 0, 1, 10, 9),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["depth"], 2);
        assert!(json.get("ordered").is_none());
        assert!(json.get("checked").is_none());
        assert!(json.get("id").is_none());
    }

    #[test]
    fn roundtrip_component_node() {
        let original = Node::Component(ComponentNode {
            name: "Chart".into(),
            is_inline: true,
            attributes: vec![],
            children: vec![],
            raw_content: String::new(),
            position: span(1, 1, 0, 1, 10, 9),
        });
        let serialized = serde_json::to_string(&original).unwrap();
        let deserialized: Node = serde_json::from_str(&serialized).unwrap();
        assert_eq!(original, deserialized);
    }

    #[test]
    fn code_inline_node_serializes() {
        let node = Node::CodeInline(CodeInlineNode {
            value: "x + 1".into(),
            lang: Some("rust".into()),
            position: span(1, 1, 0, 1, 10, 9),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "code_inline");
        assert_eq!(json["value"], "x + 1");
        assert_eq!(json["lang"], "rust");
    }

    #[test]
    fn code_inline_node_omits_lang_when_none() {
        let node = Node::CodeInline(CodeInlineNode {
            value: "foo()".into(),
            lang: None,
            position: span(1, 1, 0, 1, 7, 6),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "code_inline");
        assert!(json.get("lang").is_none());
    }

    #[test]
    fn code_block_node_new_fields_serialize() {
        let node = Node::CodeBlock(CodeBlockNode {
            value: "fn main() {}".into(),
            lang: Some("rust".into()),
            meta: None,
            title: Some("main.rs".into()),
            highlight: Some(vec![1, 3]),
            show_line_numbers: Some(true),
            diff: None,
            caption: None,
            position: span(1, 1, 0, 3, 1, 20),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "code_block");
        assert_eq!(json["title"], "main.rs");
        assert_eq!(json["highlight"], serde_json::json!([1, 3]));
        assert_eq!(json["showLineNumbers"], true);
        assert!(json.get("diff").is_none());
        assert!(json.get("caption").is_none());
    }

    #[test]
    fn citation_node_serializes() {
        let node = Node::Citation(CitationNode {
            keys: vec![
                CitationKey {
                    id: "smith2024".into(),
                    prefix: Some("see ".into()),
                    locator: Some("p. 42".into()),
                },
                CitationKey {
                    id: "jones2023".into(),
                    prefix: None,
                    locator: None,
                },
            ],
            position: span(1, 1, 0, 1, 20, 19),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "citation");
        assert_eq!(json["keys"][0]["id"], "smith2024");
        assert_eq!(json["keys"][0]["prefix"], "see ");
        assert_eq!(json["keys"][0]["locator"], "p. 42");
        assert_eq!(json["keys"][1]["id"], "jones2023");
        assert!(json["keys"][1].get("prefix").is_none());
        assert!(json["keys"][1].get("locator").is_none());
    }

    #[test]
    fn cross_ref_node_serializes() {
        let node = Node::CrossRef(CrossRefNode {
            target: "fig:architecture".into(),
            position: span(1, 1, 0, 1, 20, 19),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "cross_ref");
        assert_eq!(json["target"], "fig:architecture");
    }

    #[test]
    fn math_inline_node_serializes() {
        let node = Node::MathInline(MathNode {
            raw: "x^2".into(),
            tree: MathExpr::Superscript {
                base: Box::new(MathExpr::Ident { value: "x".into() }),
                script: Box::new(MathExpr::Number { value: "2".into() }),
            },
            position: span(1, 1, 0, 1, 6, 5),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "math_inline");
        assert_eq!(json["raw"], "x^2");
        assert_eq!(json["tree"]["type"], "superscript");
        assert_eq!(json["tree"]["base"]["type"], "ident");
        assert_eq!(json["tree"]["base"]["value"], "x");
        assert_eq!(json["tree"]["script"]["type"], "number");
        assert_eq!(json["tree"]["script"]["value"], "2");
    }

    #[test]
    fn math_display_node_serializes_with_label() {
        let node = Node::MathDisplay(MathDisplayNode {
            raw: "E = mc^2".into(),
            tree: MathExpr::Row {
                children: vec![MathExpr::Ident { value: "E".into() }],
            },
            label: Some("eq:einstein".into()),
            position: span(1, 1, 0, 1, 12, 11),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert_eq!(json["type"], "math_display");
        assert_eq!(json["raw"], "E = mc^2");
        assert_eq!(json["label"], "eq:einstein");
        assert_eq!(json["tree"]["type"], "row");
    }

    #[test]
    fn math_display_node_omits_label_when_none() {
        let node = Node::MathDisplay(MathDisplayNode {
            raw: "x".into(),
            tree: MathExpr::Ident { value: "x".into() },
            label: None,
            position: span(1, 1, 0, 1, 3, 2),
        });
        let json = serde_json::to_value(&node).unwrap();
        assert!(json.get("label").is_none());
    }

    #[test]
    fn definition_list_variants_have_children() {
        let dl = Node::DefinitionList(StandardBlockNode {
            depth: None,
            ordered: None,
            checked: None,
            id: None,
            children: vec![Node::DefinitionTerm(StandardBlockNode {
                depth: None,
                ordered: None,
                checked: None,
                id: None,
                children: vec![Node::Text(TextNode {
                    value: "Term".into(),
                    position: span(1, 1, 0, 1, 5, 4),
                })],
                position: span(1, 1, 0, 1, 5, 4),
            })],
            position: span(1, 1, 0, 2, 1, 10),
        });
        let json = serde_json::to_value(&dl).unwrap();
        assert_eq!(json["type"], "definition_list");
        assert_eq!(json["children"][0]["type"], "definition_term");
        assert_eq!(json["children"][0]["children"][0]["value"], "Term");
    }

    #[test]
    fn definition_list_children_accessible() {
        let node = Node::DefinitionList(StandardBlockNode {
            depth: None,
            ordered: None,
            checked: None,
            id: None,
            children: vec![],
            position: span(1, 1, 0, 1, 1, 0),
        });
        assert!(node.children().is_some());
    }

    #[test]
    fn math_frac_roundtrip() {
        let expr = MathExpr::Frac {
            numerator: Box::new(MathExpr::Number { value: "1".into() }),
            denominator: Box::new(MathExpr::Number { value: "2".into() }),
            style: FracStyle::Auto,
        };
        let serialized = serde_json::to_string(&expr).unwrap();
        let deserialized: MathExpr = serde_json::from_str(&serialized).unwrap();
        assert_eq!(expr, deserialized);
    }

    #[test]
    fn math_error_variant_serializes() {
        let expr = MathExpr::Error {
            raw: r"\unknown".into(),
            message: "Unknown command".into(),
        };
        let json = serde_json::to_value(&expr).unwrap();
        assert_eq!(json["type"], "error");
        assert_eq!(json["raw"], r"\unknown");
        assert_eq!(json["message"], "Unknown command");
    }
}