summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-01-22 11:30:31 +0200
committerLars Wirzenius <liw@liw.fi>2023-01-22 11:30:31 +0200
commitb940075214d31b632f62a0ba723e63b857f5e5f1 (patch)
treefa8674acd56ea7f324037d416e89ba9d3d92002f /src/lib.rs
parentb2d716a57fe0f8f9ecfe91995fd30fcb9cea7f84 (diff)
downloadsubplot-b940075214d31b632f62a0ba723e63b857f5e5f1.tar.gz
refactor: add module for parsed Markdown
This will eventually be the only module in Subplot that uses pandoc_ast or exposes types from that crate. When we replace pandoc_ast with something pulldown_cmark, only this module will need to change. Sponsored-by: author
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4a3ae81..966118d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -40,6 +40,7 @@ mod metadata;
pub use metadata::Metadata;
mod doc;
+pub mod md;
pub use doc::Document;
pub use doc::{codegen, load_document, load_document_with_pullmark};