markdown-ppp 2.9.2

Feature-rich Markdown Parsing and Pretty-Printing library
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
//! Generic Abstract Syntax Tree (AST) for CommonMark + GitHub Flavored Markdown (GFM)
//! =====================================================================================
//!
//! This module provides generic versions of all AST structures that allow attaching
//! user-defined data to any AST node. The generic parameter `T` represents the type
//! of user data that can be associated with each element.
//!
//! # Features
//!
//! - **Zero-cost abstraction**: When `T = ()`, no additional memory is used
//! - **Flexible user data**: Support for any user-defined type
//! - **Serde compatibility**: Proper serialization with optional user data fields
//! - **Type safety**: Compile-time guarantees about data presence
//!
//! # Examples
//!
//! ```rust
//! use markdown_ppp::ast::generic::*;
//!
//! // AST without user data (equivalent to regular AST)
//! type SimpleDocument = Document<()>;
//!
//! // AST with element IDs
//! #[derive(Debug, Clone, PartialEq)]
//! struct ElementId(u32);
//! type DocumentWithIds = Document<ElementId>;
//!
//! // AST with source information
//! #[derive(Debug, Clone, PartialEq)]
//! struct SourceInfo {
//!     line: u32,
//!     column: u32,
//! }
//! type DocumentWithSource = Document<SourceInfo>;
//! ```

// Re-export types from parent module that don't need generics
pub use super::{
    Alignment, CodeBlockKind, GitHubAlert, GitHubAlertType, HeadingKind, ListBulletKind,
    ListOrderedKindOptions, SetextHeading, TaskState,
};

// ——————————————————————————————————————————————————————————————————————————
// Document root
// ——————————————————————————————————————————————————————————————————————————

/// Root of a Markdown document with optional user data
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Document<T = ()> {
    /// Top‑level block sequence **in document order**.
    pub blocks: Vec<Block<T>>,

    /// User-defined data associated with this document
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Block‑level nodes
// ——————————————————————————————————————————————————————————————————————————

/// Block‑level constructs in the order they appear in the CommonMark spec.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Block<T = ()> {
    /// Ordinary paragraph
    Paragraph {
        content: Vec<Inline<T>>,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// ATX (`# Heading`) or Setext (`===`) heading
    Heading(Heading<T>),

    /// Thematic break (horizontal rule)
    ThematicBreak {
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Block quote
    BlockQuote {
        blocks: Vec<Block<T>>,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// List (bullet or ordered)
    List(List<T>),

    /// Fenced or indented code block
    CodeBlock(CodeBlock<T>),

    /// Raw HTML block
    HtmlBlock {
        content: String,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Link reference definition. Preserved for round‑tripping.
    Definition(LinkDefinition<T>),

    /// Tables
    Table(Table<T>),

    /// Footnote definition
    FootnoteDefinition(FootnoteDefinition<T>),

    /// GitHub alert block (NOTE, TIP, IMPORTANT, WARNING, CAUTION)
    GitHubAlert(GitHubAlertNode<T>),

    /// Empty block. This is used to represent skipped blocks in the AST.
    Empty {
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },
}

/// Heading with level 1–6 and inline content.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Heading<T = ()> {
    /// Kind of heading (ATX or Setext) together with the level.
    pub kind: HeadingKind,

    /// Inlines that form the heading text (before trimming).
    pub content: Vec<Inline<T>>,

    /// User-defined data associated with this heading
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Lists
// ——————————————————————————————————————————————————————————————————————————

/// A list container — bullet or ordered.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct List<T = ()> {
    /// Kind of list together with additional semantic data (start index or
    /// bullet marker).
    pub kind: ListKind,

    /// List items in source order.
    pub items: Vec<ListItem<T>>,

    /// User-defined data associated with this list
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

/// Specifies *what kind* of list we have.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ListKind {
    /// Ordered list (`1.`, `42.` …) with an *optional* explicit start number.
    Ordered(ListOrderedKindOptions),

    /// Bullet list (`-`, `*`, or `+`) together with the concrete marker.
    Bullet(ListBulletKind),
}

/// Item within a list.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ListItem<T = ()> {
    /// Task‑list checkbox state (GFM task‑lists). `None` ⇒ not a task list.
    pub task: Option<TaskState>,

    /// Nested blocks inside the list item.
    pub blocks: Vec<Block<T>>,

    /// User-defined data associated with this list item
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Code blocks
// ——————————————————————————————————————————————————————————————————————————

/// Fenced or indented code block.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CodeBlock<T = ()> {
    /// Distinguishes indented vs fenced code and stores the *info string*.
    pub kind: CodeBlockKind,

    /// Literal text inside the code block **without** final newline trimming.
    pub literal: String,

    /// User-defined data associated with this code block
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Link reference definitions
// ——————————————————————————————————————————————————————————————————————————

/// Link reference definition (GFM) with a label, destination and optional title.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct LinkDefinition<T = ()> {
    /// Link label (acts as the *identifier*).
    pub label: Vec<Inline<T>>,

    /// Link URL (absolute or relative) or email address.
    pub destination: String,

    /// Optional title (for links and images).
    pub title: Option<String>,

    /// User-defined data associated with this link definition
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Tables
// ——————————————————————————————————————————————————————————————————————————

/// A table is a collection of rows and columns with optional alignment.
/// The first row is the header row.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Table<T = ()> {
    /// Each row is a vector of *cells*; header row is **row 0**.
    pub rows: Vec<TableRow<T>>,

    /// Column alignment; `alignments.len() == column_count`.
    pub alignments: Vec<Alignment>,

    /// User-defined data associated with this table
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

/// A table row is a vector of cells (columns).
pub type TableRow<T> = Vec<TableCell<T>>;

/// A table cell is a vector of inlines (text, links, etc.).
pub type TableCell<T> = Vec<Inline<T>>;

// ——————————————————————————————————————————————————————————————————————————
// Footnotes
// ——————————————————————————————————————————————————————————————————————————

/// Footnote definition block (e.g., `[^label]: content`).
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct FootnoteDefinition<T = ()> {
    /// Normalized label (without leading `^`).
    pub label: String,

    /// Footnote content (blocks).
    pub blocks: Vec<Block<T>>,

    /// User-defined data associated with this footnote definition
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// GitHub Alerts
// ——————————————————————————————————————————————————————————————————————————

/// GitHub alert block with user data support
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct GitHubAlertNode<T = ()> {
    /// Type of alert (NOTE, TIP, IMPORTANT, WARNING, CAUTION)
    pub alert_type: GitHubAlertType,

    /// Content blocks within the alert
    pub blocks: Vec<Block<T>>,

    /// User-defined data associated with this GitHub alert
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Inline‑level nodes
// ——————————————————————————————————————————————————————————————————————————

/// Inline-level elements within paragraphs, headings, and other blocks.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Inline<T = ()> {
    /// Plain text (decoded entity references, preserved backslash escapes).
    Text {
        content: String,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Hard line break
    LineBreak {
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Inline code span
    Code {
        content: String,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Raw HTML fragment
    Html {
        content: String,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Link to a destination with optional title.
    Link(Link<T>),

    /// Reference link
    LinkReference(LinkReference<T>),

    /// Image with optional title.
    Image(Image<T>),

    /// Emphasis (`*` / `_`)
    Emphasis {
        content: Vec<Inline<T>>,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Strong emphasis (`**` / `__`)
    Strong {
        content: Vec<Inline<T>>,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Strikethrough (`~~`)
    Strikethrough {
        content: Vec<Inline<T>>,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Autolink (`<https://>` or `<mailto:…>`)
    Autolink {
        url: String,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Footnote reference (`[^label]`)
    FootnoteReference {
        label: String,
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },

    /// Empty element. This is used to represent skipped elements in the AST.
    Empty {
        #[cfg_attr(feature = "ast-serde", serde(default))]
        user_data: T,
    },
}

/// Re‑usable structure for links and images (destination + children).
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Link<T = ()> {
    /// Destination URL (absolute or relative) or email address.
    pub destination: String,

    /// Optional title (for links and images).
    pub title: Option<String>,

    /// Inline content (text, code, etc.) inside the link or image.
    pub children: Vec<Inline<T>>,

    /// User-defined data associated with this link
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

/// Re‑usable structure for images.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Image<T = ()> {
    /// Image URL (absolute or relative).
    pub destination: String,

    /// Optional title.
    pub title: Option<String>,

    /// Alternative text.
    pub alt: String,

    /// User-defined data associated with this image
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

/// Reference-style link (e.g., `[text][label]` or `[label][]`).
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "ast-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct LinkReference<T = ()> {
    /// Link label (acts as the *identifier*).
    pub label: Vec<Inline<T>>,

    /// Link text
    pub text: Vec<Inline<T>>,

    /// User-defined data associated with this link reference
    #[cfg_attr(feature = "ast-serde", serde(default))]
    pub user_data: T,
}

// ——————————————————————————————————————————————————————————————————————————
// Default implementations for common cases
// ——————————————————————————————————————————————————————————————————————————

impl<T: Default> Default for Document<T> {
    fn default() -> Self {
        Self {
            blocks: Vec::new(),
            user_data: T::default(),
        }
    }
}

impl<T: Default> Default for Heading<T> {
    fn default() -> Self {
        Self {
            kind: HeadingKind::Atx(1),
            content: Vec::new(),
            user_data: T::default(),
        }
    }
}

impl<T: Default> Default for List<T> {
    fn default() -> Self {
        Self {
            kind: ListKind::Bullet(ListBulletKind::Dash),
            items: Vec::new(),
            user_data: T::default(),
        }
    }
}

impl<T: Default> Default for Table<T> {
    fn default() -> Self {
        Self {
            rows: Vec::new(),
            alignments: Vec::new(),
            user_data: T::default(),
        }
    }
}