Introduce the corresponding non-render types.

This commit is contained in:
Tom Alexander
2023-10-24 00:36:08 -04:00
parent 3b472a9e96
commit 2b7a19a1d4
19 changed files with 91 additions and 10 deletions

15
src/context/mod.rs Normal file
View File

@@ -0,0 +1,15 @@
mod blog_post_page;
mod document_element;
mod element;
mod global_settings;
mod heading;
mod object;
mod section;
pub(crate) use blog_post_page::RenderBlogPostPage;
pub(crate) use document_element::RenderDocumentElement;
pub(crate) use element::RenderElement;
pub(crate) use global_settings::GlobalSettings;
pub(crate) use heading::RenderHeading;
pub(crate) use object::RenderObject;
pub(crate) use section::RenderSection;