cdoc_parser/lib.rs
1pub mod ast;
2pub mod code_ast;
3mod common;
4
5pub use common::*;
6pub mod document;
7pub mod notebook;
8pub mod raw;
9
10#[cfg(feature = "scripting")]
11pub mod scripting;
12
13#[cfg(test)]
14use pest_test_gen::pest_tests;
15
16#[pest_tests(
17 crate::raw::RawDocParser,
18 crate::raw::Rule,
19 "doc",
20 dir = "tests/pest/doc",
21 strict = false,
22 lazy_static = true
23)]
24#[cfg(test)]
25mod raw_doc_tests {}