litedoc-core 0.1.0

Deterministic document parser for machine-generated output with error recovery
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
//! Abstract Syntax Tree types for LiteDoc documents.
//!
//! This module contains all the AST node types produced by the parser.
//! The AST is designed to be:
//!
//! - **Zero-copy**: Uses `Cow<'a, str>` to borrow from input when possible
//! - **Span-tracked**: Every node includes source location information
//! - **Comprehensive**: Supports all LiteDoc and Markdown constructs

use crate::span::Span;

/// Parsing profile that determines syntax rules.
///
/// The profile affects how the parser interprets certain constructs
/// and which features are enabled by default.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Profile {
    /// Full LiteDoc syntax with explicit fencing.
    ///
    /// This is the native format optimized for AI consumption.
    Litedoc,
    /// CommonMark with GFM extensions (tables, strikethrough, autolinks).
    Md,
    /// Strict CommonMark compliance only.
    MdStrict,
}

/// Optional modules that extend parser capabilities.
///
/// Modules can be enabled via the `@modules` directive or parser configuration.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Module {
    /// GFM-style tables with `|` delimiters.
    Tables,
    /// Footnote definitions and references.
    Footnotes,
    /// LaTeX-style math blocks.
    Math,
    /// Task list items with `[ ]` and `[x]` checkboxes.
    Tasks,
    /// `~~strikethrough~~` syntax.
    Strikethrough,
    /// Automatic URL detection and linking.
    Autolink,
    /// Raw HTML pass-through blocks.
    Html,
}

/// A parsed LiteDoc document.
///
/// The document is the root of the AST and contains all parsed content.
/// It preserves the parsing profile, enabled modules, optional metadata,
/// and all content blocks.
#[derive(Debug, Clone, PartialEq)]
pub struct Document<'a> {
    /// The parsing profile used (may differ from parser default if `@profile` directive present).
    pub profile: Profile,
    /// Enabled modules from `@modules` directive.
    pub modules: Vec<Module>,
    /// Optional metadata from `--- meta` block.
    pub metadata: Option<Metadata<'a>>,
    /// Content blocks in document order.
    pub blocks: Vec<Block<'a>>,
    /// Source span covering the entire document.
    pub span: Span,
}

/// Document metadata from the `--- meta` block.
///
/// Metadata provides key-value pairs for document properties like
/// title, author, date, tags, etc.
#[derive(Debug, Clone, PartialEq)]
pub struct Metadata<'a> {
    /// Key-value entries in declaration order.
    pub entries: Vec<(CowStr<'a>, AttrValue<'a>)>,
    /// Source span of the metadata block.
    pub span: Span,
}

/// Typed attribute values for metadata entries.
///
/// Values are automatically parsed into appropriate types:
/// - Quoted strings → `Str`
/// - `true`/`false` → `Bool`
/// - Integers → `Int`
/// - Decimals → `Float`
/// - `[a, b, c]` → `List`
#[derive(Debug, Clone, PartialEq)]
pub enum AttrValue<'a> {
    /// String value (quotes stripped).
    Str(CowStr<'a>),
    /// Boolean value.
    Bool(bool),
    /// 64-bit signed integer.
    Int(i64),
    /// 64-bit floating point.
    Float(f64),
    /// Nested list of values.
    List(Vec<AttrValue<'a>>),
}

/// Block-level AST nodes.
///
/// Blocks are the primary structural elements of a document.
/// Each variant represents a distinct block type with its own structure.
#[derive(Debug, Clone, PartialEq)]
pub enum Block<'a> {
    /// Section heading (levels 1-6).
    Heading(Heading<'a>),
    /// Text paragraph with inline formatting.
    Paragraph(Paragraph<'a>),
    /// Ordered or unordered list.
    List(List<'a>),
    /// Fenced code block with optional language.
    CodeBlock(CodeBlock<'a>),
    /// Callout/admonition block (note, warning, etc.).
    Callout(Callout<'a>),
    /// Block quotation.
    Quote(Quote<'a>),
    /// Figure with image and caption.
    Figure(Figure<'a>),
    /// Data table with rows and cells.
    Table(Table<'a>),
    /// Footnote definitions.
    Footnotes(Footnotes<'a>),
    /// Mathematical equation (inline or display).
    Math(MathBlock<'a>),
    /// Horizontal rule / thematic break.
    ThematicBreak(Span),
    /// Raw HTML content (when HTML module enabled).
    Html(HtmlBlock<'a>),
    /// Unparsed/unknown block content (error recovery).
    Raw(RawBlock<'a>),
}

/// Section heading with level and inline content.
#[derive(Debug, Clone, PartialEq)]
pub struct Heading<'a> {
    /// Heading level (1-6).
    pub level: u8,
    /// Inline content (may include formatting).
    pub content: Vec<Inline<'a>>,
    /// Source span.
    pub span: Span,
}

/// Text paragraph containing inline elements.
#[derive(Debug, Clone, PartialEq)]
pub struct Paragraph<'a> {
    /// Inline content with formatting.
    pub content: Vec<Inline<'a>>,
    /// Source span.
    pub span: Span,
}

/// List ordering style.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ListKind {
    /// Numbered list (1. 2. 3.).
    Ordered,
    /// Bulleted list (- or *).
    Unordered,
}

/// A list block containing multiple items.
#[derive(Debug, Clone, PartialEq)]
pub struct List<'a> {
    /// Ordered or unordered.
    pub kind: ListKind,
    /// Starting number for ordered lists.
    pub start: Option<u64>,
    /// List items.
    pub items: Vec<ListItem<'a>>,
    /// Source span.
    pub span: Span,
}

/// A single list item (may contain nested blocks).
#[derive(Debug, Clone, PartialEq)]
pub struct ListItem<'a> {
    /// Content blocks within the item.
    pub blocks: Vec<Block<'a>>,
    /// Source span.
    pub span: Span,
}

/// Fenced code block with syntax highlighting hint.
#[derive(Debug, Clone, PartialEq)]
pub struct CodeBlock<'a> {
    /// Language identifier (e.g., "rust", "python").
    pub lang: CowStr<'a>,
    /// Raw code content.
    pub content: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Callout/admonition block for notes, warnings, etc.
#[derive(Debug, Clone, PartialEq)]
pub struct Callout<'a> {
    /// Callout type (note, warning, info, tip, etc.).
    pub kind: CowStr<'a>,
    /// Optional title override.
    pub title: Option<CowStr<'a>>,
    /// Content blocks.
    pub blocks: Vec<Block<'a>>,
    /// Source span.
    pub span: Span,
}

/// Block quotation.
#[derive(Debug, Clone, PartialEq)]
pub struct Quote<'a> {
    /// Quoted content blocks.
    pub blocks: Vec<Block<'a>>,
    /// Source span.
    pub span: Span,
}

/// Figure with image and optional caption.
#[derive(Debug, Clone, PartialEq)]
pub struct Figure<'a> {
    /// Image source URL or path.
    pub src: CowStr<'a>,
    /// Alt text for accessibility.
    pub alt: CowStr<'a>,
    /// Optional figure caption.
    pub caption: Option<CowStr<'a>>,
    /// Source span.
    pub span: Span,
}

/// Data table with header and body rows.
#[derive(Debug, Clone, PartialEq)]
pub struct Table<'a> {
    /// All table rows (first may be header).
    pub rows: Vec<TableRow<'a>>,
    /// Source span.
    pub span: Span,
}

/// A single table row.
#[derive(Debug, Clone, PartialEq)]
pub struct TableRow<'a> {
    /// Cells in this row.
    pub cells: Vec<TableCell<'a>>,
    /// Whether this is a header row.
    pub header: bool,
    /// Source span.
    pub span: Span,
}

/// A single table cell.
#[derive(Debug, Clone, PartialEq)]
pub struct TableCell<'a> {
    /// Cell content (inline elements).
    pub content: Vec<Inline<'a>>,
    /// Source span.
    pub span: Span,
}

/// Container for footnote definitions.
#[derive(Debug, Clone, PartialEq)]
pub struct Footnotes<'a> {
    /// Footnote definitions.
    pub defs: Vec<FootnoteDef<'a>>,
    /// Source span.
    pub span: Span,
}

/// A single footnote definition.
#[derive(Debug, Clone, PartialEq)]
pub struct FootnoteDef<'a> {
    /// Footnote label (e.g., "1", "note").
    pub label: CowStr<'a>,
    /// Footnote content blocks.
    pub blocks: Vec<Block<'a>>,
    /// Source span.
    pub span: Span,
}

/// Mathematical equation block (LaTeX).
#[derive(Debug, Clone, PartialEq)]
pub struct MathBlock<'a> {
    /// Whether this is display math (vs inline).
    pub display: bool,
    /// LaTeX content.
    pub content: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Raw HTML block content.
#[derive(Debug, Clone, PartialEq)]
pub struct HtmlBlock<'a> {
    /// Raw HTML content.
    pub content: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Unparsed block content (for error recovery).
#[derive(Debug, Clone, PartialEq)]
pub struct RawBlock<'a> {
    /// Raw unparsed content.
    pub content: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Inline-level AST nodes (within paragraphs, headings, etc.).
///
/// Inline elements represent text-level formatting and can be nested.
#[derive(Debug, Clone, PartialEq)]
pub enum Inline<'a> {
    /// Plain text content.
    Text(Text<'a>),
    /// Emphasized text (*italic*).
    Emphasis(Emphasis<'a>),
    /// Strong text (**bold**).
    Strong(Strong<'a>),
    /// Inline code (`code`).
    CodeSpan(CodeSpan<'a>),
    /// Hyperlink with label and URL.
    Link(Link<'a>),
    /// Auto-detected URL link.
    AutoLink(AutoLink<'a>),
    /// Strikethrough text (~~deleted~~).
    Strikethrough(Strikethrough<'a>),
    /// Footnote reference ([^label]).
    FootnoteRef(FootnoteRef<'a>),
    /// Hard line break (explicit).
    HardBreak(Span),
    /// Soft line break (newline in source).
    SoftBreak(Span),
}

/// Plain text content.
#[derive(Debug, Clone, PartialEq)]
pub struct Text<'a> {
    /// The text content.
    pub content: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Emphasized (italic) text.
#[derive(Debug, Clone, PartialEq)]
pub struct Emphasis<'a> {
    /// Nested inline content.
    pub content: Vec<Inline<'a>>,
    /// Source span.
    pub span: Span,
}

/// Strong (bold) text.
#[derive(Debug, Clone, PartialEq)]
pub struct Strong<'a> {
    /// Nested inline content.
    pub content: Vec<Inline<'a>>,
    /// Source span.
    pub span: Span,
}

/// Strikethrough text.
#[derive(Debug, Clone, PartialEq)]
pub struct Strikethrough<'a> {
    /// Nested inline content.
    pub content: Vec<Inline<'a>>,
    /// Source span.
    pub span: Span,
}

/// Inline code span.
#[derive(Debug, Clone, PartialEq)]
pub struct CodeSpan<'a> {
    /// Code content (not parsed for formatting).
    pub content: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Hyperlink with label and destination.
#[derive(Debug, Clone, PartialEq)]
pub struct Link<'a> {
    /// Link text (may contain nested formatting).
    pub label: Vec<Inline<'a>>,
    /// Link destination URL.
    pub url: CowStr<'a>,
    /// Optional title (for tooltips).
    pub title: Option<CowStr<'a>>,
    /// Source span.
    pub span: Span,
}

/// Automatically detected URL.
#[derive(Debug, Clone, PartialEq)]
pub struct AutoLink<'a> {
    /// The URL.
    pub url: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Reference to a footnote.
#[derive(Debug, Clone, PartialEq)]
pub struct FootnoteRef<'a> {
    /// Footnote label being referenced.
    pub label: CowStr<'a>,
    /// Source span.
    pub span: Span,
}

/// Borrowed or owned string type for zero-copy parsing.
pub type CowStr<'a> = std::borrow::Cow<'a, str>;