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
use super::affiliated_keyword::GetAffiliatedKeywords;
use super::element::Element;
use super::lesser_element::TableCell;
use super::AffiliatedKeywords;
use super::Keyword;
use super::Object;
use super::StandardProperties;

#[derive(Debug)]
pub struct PlainList<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub list_type: PlainListType,
    pub children: Vec<PlainListItem<'s>>,
}

#[derive(Debug, Copy, Clone)]
pub enum PlainListType {
    Unordered,
    Ordered,
    Descriptive,
}

/// The width that something is indented. For example, a single tab character could be a value of 4 or 8.
pub type IndentationLevel = u16;

#[derive(Debug)]
pub struct PlainListItem<'s> {
    pub source: &'s str,
    pub indentation: IndentationLevel,
    pub bullet: &'s str,
    pub counter: Option<PlainListItemCounter>,
    pub checkbox: Option<(CheckboxType, &'s str)>,
    pub tag: Vec<Object<'s>>,
    pub pre_blank: PlainListItemPreBlank,
    pub children: Vec<Element<'s>>,
}

pub type PlainListItemCounter = u16;
pub type PlainListItemPreBlank = u8;

#[derive(Debug)]
pub enum CheckboxType {
    On,
    Trans,
    Off,
}

#[derive(Debug)]
pub struct CenterBlock<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub children: Vec<Element<'s>>,
}

#[derive(Debug)]
pub struct QuoteBlock<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub children: Vec<Element<'s>>,
}

#[derive(Debug)]
pub struct SpecialBlock<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub block_type: &'s str,
    pub parameters: Option<&'s str>,
    pub children: Vec<Element<'s>>,
}

#[derive(Debug)]
pub struct DynamicBlock<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub block_name: &'s str,
    pub parameters: Option<&'s str>,
    pub children: Vec<Element<'s>>,
}

#[derive(Debug)]
pub struct FootnoteDefinition<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub label: &'s str,
    pub children: Vec<Element<'s>>,
}

#[derive(Debug)]
pub struct Drawer<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub drawer_name: &'s str,
    pub children: Vec<Element<'s>>,
}

#[derive(Debug)]
pub struct PropertyDrawer<'s> {
    pub source: &'s str,
    pub children: Vec<NodeProperty<'s>>,
}

#[derive(Debug)]
pub struct NodeProperty<'s> {
    pub source: &'s str,
    pub property_name: &'s str,
    pub value: Option<&'s str>,
}

#[derive(Debug)]
pub struct Table<'s> {
    pub source: &'s str,
    pub affiliated_keywords: AffiliatedKeywords<'s>,
    pub formulas: Vec<Keyword<'s>>,
    pub children: Vec<TableRow<'s>>,
}

#[derive(Debug)]
pub struct TableRow<'s> {
    pub source: &'s str,
    pub children: Vec<TableCell<'s>>,
}

#[derive(Debug)]
pub enum TableRowType {
    Standard,
    Rule,
}

impl<'s> StandardProperties<'s> for PlainList<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for PlainListItem<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for CenterBlock<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for QuoteBlock<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for SpecialBlock<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for DynamicBlock<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for FootnoteDefinition<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for Drawer<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for PropertyDrawer<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for NodeProperty<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for Table<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> StandardProperties<'s> for TableRow<'s> {
    fn get_source<'b>(&'b self) -> &'s str {
        self.source
    }
}

impl<'s> PlainListItem<'s> {
    pub fn get_checkbox(&self) -> Option<&'s str> {
        self.checkbox.as_ref().map(|(_, checkbox)| *checkbox)
    }

    pub fn get_checkbox_type(&self) -> Option<&CheckboxType> {
        self.checkbox
            .as_ref()
            .map(|(checkbox_type, _)| checkbox_type)
    }
}

impl<'s> TableRow<'s> {
    pub fn get_type(&self) -> TableRowType {
        if self.children.is_empty() {
            TableRowType::Rule
        } else {
            TableRowType::Standard
        }
    }
}

impl<'s> GetAffiliatedKeywords<'s> for PlainList<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for Table<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for Drawer<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for FootnoteDefinition<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for DynamicBlock<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for SpecialBlock<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for CenterBlock<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}

impl<'s> GetAffiliatedKeywords<'s> for QuoteBlock<'s> {
    fn get_affiliated_keywords<'a>(&'a self) -> &'a AffiliatedKeywords<'s> {
        &self.affiliated_keywords
    }
}