cdoc/lib.rs
1//! CDoc is a tool for rendering markdown-based document formats (markdown and jupyter notebooks) to
2//! user-defined output formats. Output formats are entirely user defined through templates.
3
4/// Defines input/output format configuration types.
5pub mod config;
6
7/// Defines types for loading content files and parsing them to the internal format. Can be extended.
8pub mod loader;
9
10/// Provides a type for applying preprocessors to documents.
11pub mod parser;
12
13/// Contains preprocessors for documents. Currently, only used for the exercise syntax.
14pub mod preprocessors;
15
16/// Contains renderer types that can be used for raw outputs and notebook-based outputs. Can be extended.
17pub mod renderers;
18
19pub mod package;
20mod scripting;
21/// Provides a template manager for easily rendering the different types of templates supported by cdoc.
22pub mod templates;