notedown_ast 0.16.3

Notedown Abstract Syntax Tree
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;

/// ## Orderless List
/// ```note
/// - part1
/// - part2
///   part2
/// - part3
///
/// - part4
/// ```
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct OrderlessList {
    /// list items
    pub children: Vec<ListItem>,
}