diff --git a/src/intermediate/definition.rs b/src/intermediate/blog_post.rs similarity index 100% rename from src/intermediate/definition.rs rename to src/intermediate/blog_post.rs diff --git a/src/intermediate/mod.rs b/src/intermediate/mod.rs index fd969ef..df8f1b2 100644 --- a/src/intermediate/mod.rs +++ b/src/intermediate/mod.rs @@ -1,6 +1,7 @@ mod angle_link; mod ast_node; mod babel_call; +mod blog_post; mod bold; mod center_block; mod citation; @@ -10,7 +11,6 @@ mod code; mod comment; mod comment_block; mod convert; -mod definition; mod diary_sexp; mod document_element; mod drawer; @@ -67,6 +67,7 @@ mod verse_block; pub(crate) use angle_link::IAngleLink; pub(crate) use ast_node::IAstNode; pub(crate) use babel_call::IBabelCall; +pub(crate) use blog_post::BlogPost; pub(crate) use bold::IBold; pub(crate) use center_block::ICenterBlock; pub(crate) use citation::ICitation; @@ -76,7 +77,6 @@ pub(crate) use code::ICode; pub(crate) use comment::IComment; pub(crate) use comment_block::ICommentBlock; pub(crate) use convert::convert_blog_post_page_to_render_context; -pub(crate) use definition::BlogPost; pub(crate) use diary_sexp::IDiarySexp; pub(crate) use document_element::IDocumentElement; pub(crate) use drawer::IDrawer;