Invoke dust to render the stream pages.

At this point the render_blog_stream function is done, but RenderBlogStream::new needs to be implemented to actually generate the render context. The body of this function should be similar to convert_blog_post_page_to_render_context.
This commit is contained in:
Tom Alexander
2023-12-17 17:26:15 -05:00
parent 2ba4a5e3d7
commit cbe2010407
3 changed files with 29 additions and 10 deletions

View File

@@ -65,6 +65,7 @@ mod verbatim;
mod verse_block;
pub(crate) use blog_post_page::RenderBlogPostPage;
pub(crate) use blog_stream::RenderBlogStream;
pub(crate) use document_element::RenderDocumentElement;
pub(crate) use element::RenderElement;
pub(crate) use footnote_definition::RenderRealFootnoteDefinition;