cdoc 1.0.0

A markdown-based document parser and processor
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
use std::cmp::{Eq, PartialEq};
use std::fmt::{Debug, Display, Formatter};
use std::hash::{Hash, Hasher};

use anyhow::anyhow;
use clap::ValueEnum;
use dyn_clone::DynClone;
use serde::{Deserialize, Serialize};

use crate::loader::{Loader, MarkdownLoader, NotebookLoader};

use crate::renderers::generic::GenericRenderer;
use crate::renderers::notebook::NotebookRenderer;
use crate::renderers::DocumentRenderer;

/// Input formats. Currently supports regular markdown files as well as Jupyter Notebooks.
#[derive(Hash, Clone, Copy, Eq, PartialEq, Serialize, Deserialize, Debug, ValueEnum)]
#[serde(rename_all = "lowercase")]
pub enum InputFormat {
    Markdown,
    Notebook,
}

/// Implementors define a format. This trait should make format extensions easy to implement.
#[typetag::serde]
pub trait Format: DynClone + Debug + Send + Sync {
    /// Return the file extension used for the given format.
    fn extension(&self) -> &str;
    /// Template format name. Useful if templates are reused across formats as is the case for
    /// notebooks which use markdown.
    fn template_prefix(&self) -> &str;
    /// Format name that is used in status messages, build output and in the configuration file.
    fn name(&self) -> &str;
    /// Return true if the format should not be parsed. This may be removed in the future and is
    /// currently only used for the info format which exports all parsed contents in a project.
    fn no_parse(&self) -> bool;
    /// Return a renderer instance. Currently does not allow for configuration.
    fn renderer(&self) -> Box<dyn DocumentRenderer>;
    /// Determines whether non-source files should be copied to
    fn include_resources(&self) -> bool;
    fn layout(&self) -> Option<String>;
}

impl PartialEq for dyn Format {
    fn eq(&self, other: &Self) -> bool {
        self.name() == other.name()
    }
}

impl Hash for dyn Format {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.name().hash(state)
    }
}

impl Eq for dyn Format {}

// impl Eq for Box<dyn Format> {}

impl Display for dyn Format {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.name())
    }
}

dyn_clone::clone_trait_object!(Format);

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct NotebookFormat {}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct HtmlFormat {}

/// Used to produce an output yml file containing all sources and metadata in a single file
/// structured like the content folder.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct InfoFormat {}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct MarkdownFormat {}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct LaTexFormat {}

/// Custom output format definition. It should be possible to create almost any text-based output.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct DynamicFormat {
    /// Output file extension
    pub extension: String,
    /// Template prefix (used in template files)
    pub template_prefix: String,
    /// Format name (used for build folder)
    pub name: String,
    /// Renderer to use (generic or notebook)
    #[serde(default = "default_renderer")]
    pub renderer: Box<dyn DocumentRenderer>,
    /// Include resources folder in output
    #[serde(default)]
    pub include_resources: bool,
    /// Use layout template
    pub layout: Option<String>,
}

fn default_renderer() -> Box<dyn DocumentRenderer> {
    Box::<GenericRenderer>::default()
}

#[typetag::serde(name = "dynamic")]
impl Format for DynamicFormat {
    fn extension(&self) -> &str {
        &self.extension
    }

    fn template_prefix(&self) -> &str {
        &self.template_prefix
    }

    fn name(&self) -> &str {
        &self.name
    }

    fn no_parse(&self) -> bool {
        false
    }

    fn renderer(&self) -> Box<dyn DocumentRenderer> {
        self.renderer.clone()
    }

    fn include_resources(&self) -> bool {
        self.include_resources
    }

    fn layout(&self) -> Option<String> {
        self.layout.clone()
    }
}

#[typetag::serde(name = "notebook")]
impl Format for NotebookFormat {
    fn extension(&self) -> &str {
        "ipynb"
    }

    fn template_prefix(&self) -> &str {
        "markdown"
    }

    fn name(&self) -> &str {
        "notebook"
    }

    fn no_parse(&self) -> bool {
        false
    }

    fn renderer(&self) -> Box<dyn DocumentRenderer> {
        Box::new(NotebookRenderer)
    }

    fn include_resources(&self) -> bool {
        true
    }

    fn layout(&self) -> Option<String> {
        None
    }
}

#[typetag::serde(name = "html")]
impl Format for HtmlFormat {
    fn extension(&self) -> &str {
        "html"
    }

    fn template_prefix(&self) -> &str {
        "html"
    }

    fn name(&self) -> &str {
        "html"
    }

    fn no_parse(&self) -> bool {
        false
    }

    fn renderer(&self) -> Box<dyn DocumentRenderer> {
        Box::<GenericRenderer>::default()
    }
    fn include_resources(&self) -> bool {
        true
    }
    fn layout(&self) -> Option<String> {
        Some("section".to_string())
    }
}

#[typetag::serde(name = "info")]
impl Format for InfoFormat {
    fn extension(&self) -> &str {
        "yml"
    }

    fn template_prefix(&self) -> &str {
        "yml"
    }

    fn name(&self) -> &str {
        "info"
    }

    fn no_parse(&self) -> bool {
        true
    }

    fn renderer(&self) -> Box<dyn DocumentRenderer> {
        Box::<GenericRenderer>::default()
    }
    fn include_resources(&self) -> bool {
        false
    }
    fn layout(&self) -> Option<String> {
        None
    }
}

#[typetag::serde(name = "markdown")]
impl Format for MarkdownFormat {
    fn extension(&self) -> &str {
        "md"
    }

    fn template_prefix(&self) -> &str {
        "markdown"
    }

    fn name(&self) -> &str {
        "markdown"
    }

    fn no_parse(&self) -> bool {
        false
    }
    fn renderer(&self) -> Box<dyn DocumentRenderer> {
        Box::<GenericRenderer>::default()
    }
    fn include_resources(&self) -> bool {
        false
    }
    fn layout(&self) -> Option<String> {
        None
    }
}

#[typetag::serde(name = "latex")]
impl Format for LaTexFormat {
    fn extension(&self) -> &str {
        "tex"
    }

    fn template_prefix(&self) -> &str {
        "latex"
    }

    fn name(&self) -> &str {
        "latex"
    }

    fn no_parse(&self) -> bool {
        false
    }
    fn renderer(&self) -> Box<dyn DocumentRenderer> {
        Box::<GenericRenderer>::default()
    }
    fn include_resources(&self) -> bool {
        true
    }
    fn layout(&self) -> Option<String> {
        Some("section".to_string())
    }
}

impl InputFormat {
    /// Get loader for format (designed to be extensible)
    pub fn loader(&self) -> Box<dyn Loader> {
        match self {
            InputFormat::Markdown => Box::new(MarkdownLoader),
            InputFormat::Notebook => Box::new(NotebookLoader),
        }
    }

    /// Format extension
    pub fn extension(&self) -> &str {
        match self {
            InputFormat::Markdown => "md",
            InputFormat::Notebook => "ipynb",
        }
    }

    /// Name can be used by tools like courses to display the current format
    pub fn name(&self) -> &str {
        match self {
            InputFormat::Markdown => "markdown",
            InputFormat::Notebook => "notebook",
        }
    }

    pub fn from_extension(ext: &str) -> Result<Self, anyhow::Error> {
        match ext {
            "md" => Ok(InputFormat::Markdown),
            "ipynb" => Ok(InputFormat::Notebook),
            _ => Err(anyhow!("Invalid extension for input")),
        }
    }

    pub fn from_name(name: &str) -> Result<Self, anyhow::Error> {
        match name {
            "markdown" => Ok(InputFormat::Markdown),
            "notebook" => Ok(InputFormat::Notebook),
            _ => Err(anyhow!("Invalid format name for input")),
        }
    }
}

impl Display for InputFormat {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.name())
    }
}

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

    #[test]
    fn input_format_extension_and_name_mapping() {
        assert_eq!(
            InputFormat::from_extension("md").unwrap(),
            InputFormat::Markdown
        );
        assert_eq!(
            InputFormat::from_extension("ipynb").unwrap(),
            InputFormat::Notebook
        );
        assert!(InputFormat::from_extension("txt").is_err());

        assert_eq!(
            InputFormat::from_name("markdown").unwrap(),
            InputFormat::Markdown
        );
        assert_eq!(
            InputFormat::from_name("notebook").unwrap(),
            InputFormat::Notebook
        );
        assert!(InputFormat::from_name("html").is_err());

        // Name/extension round-trip for every variant.
        for f in [InputFormat::Markdown, InputFormat::Notebook] {
            assert_eq!(InputFormat::from_name(f.name()).unwrap(), f);
            assert_eq!(InputFormat::from_extension(f.extension()).unwrap(), f);
        }
    }

    #[test]
    fn output_format_typetag_roundtrip() {
        // These tag strings appear verbatim in every project's config file; a rename would
        // silently break deserialization for all existing projects.
        let cases = [
            ("html: {}", "html", "html"),
            ("markdown: {}", "markdown", "md"),
            ("notebook: {}", "notebook", "ipynb"),
            ("latex: {}", "latex", "tex"),
            ("info: {}", "info", "yml"),
        ];
        for (yaml, name, ext) in cases {
            let f: Box<dyn Format> =
                serde_yaml::from_str(yaml).unwrap_or_else(|e| panic!("parse `{yaml}`: {e}"));
            assert_eq!(f.name(), name);
            assert_eq!(f.extension(), ext);

            // The tag must survive a serialize → deserialize round-trip.
            let out = serde_yaml::to_string(&f).unwrap();
            let f2: Box<dyn Format> = serde_yaml::from_str(&out)
                .unwrap_or_else(|e| panic!("re-parse of `{out}`: {e}"));
            assert_eq!(f2.name(), name);
            assert_eq!(f2.extension(), ext);
        }
    }

    #[test]
    fn dynamic_format_deserializes() {
        let yaml = r#"
dynamic:
  name: myfmt
  extension: xyz
  template_prefix: html
"#;
        let f: Box<dyn Format> = serde_yaml::from_str(yaml).unwrap();
        assert_eq!(f.name(), "myfmt");
        assert_eq!(f.extension(), "xyz");
        assert_eq!(f.template_prefix(), "html");
    }
}