Add the skeletons for the objects.
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
mod angle_link;
|
||||
mod babel_call;
|
||||
mod bold;
|
||||
mod center_block;
|
||||
mod citation;
|
||||
mod citation_reference;
|
||||
mod clock;
|
||||
mod code;
|
||||
mod comment;
|
||||
mod comment_block;
|
||||
mod convert;
|
||||
@@ -10,33 +15,58 @@ mod document_element;
|
||||
mod drawer;
|
||||
mod dynamic_block;
|
||||
mod element;
|
||||
mod entity;
|
||||
mod example_block;
|
||||
mod export_block;
|
||||
mod export_snippet;
|
||||
mod fixed_width_area;
|
||||
mod footnote_definition;
|
||||
mod footnote_reference;
|
||||
mod heading;
|
||||
mod horizontal_rule;
|
||||
mod inline_babel_call;
|
||||
mod inline_source_block;
|
||||
mod italic;
|
||||
mod keyword;
|
||||
mod latex_environment;
|
||||
mod latex_fragment;
|
||||
mod line_break;
|
||||
mod object;
|
||||
mod org_macro;
|
||||
mod page;
|
||||
mod paragraph;
|
||||
mod plain_link;
|
||||
mod plain_list;
|
||||
mod plain_text;
|
||||
mod planning;
|
||||
mod property_drawer;
|
||||
mod quote_block;
|
||||
mod radio_link;
|
||||
mod radio_target;
|
||||
mod registry;
|
||||
mod regular_link;
|
||||
mod section;
|
||||
mod special_block;
|
||||
mod src_block;
|
||||
mod statistics_cookie;
|
||||
mod strike_through;
|
||||
mod subscript;
|
||||
mod superscript;
|
||||
mod table;
|
||||
mod target;
|
||||
mod timestamp;
|
||||
mod underline;
|
||||
mod util;
|
||||
mod verbatim;
|
||||
mod verse_block;
|
||||
pub(crate) use angle_link::IAngleLink;
|
||||
pub(crate) use babel_call::IBabelCall;
|
||||
pub(crate) use bold::IBold;
|
||||
pub(crate) use center_block::ICenterBlock;
|
||||
pub(crate) use citation::ICitation;
|
||||
pub(crate) use citation_reference::ICitationReference;
|
||||
pub(crate) use clock::IClock;
|
||||
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;
|
||||
@@ -46,25 +76,45 @@ pub(crate) use document_element::IDocumentElement;
|
||||
pub(crate) use drawer::IDrawer;
|
||||
pub(crate) use dynamic_block::IDynamicBlock;
|
||||
pub(crate) use element::IElement;
|
||||
pub(crate) use entity::IEntity;
|
||||
pub(crate) use example_block::IExampleBlock;
|
||||
pub(crate) use export_block::IExportBlock;
|
||||
pub(crate) use export_snippet::IExportSnippet;
|
||||
pub(crate) use fixed_width_area::IFixedWidthArea;
|
||||
pub(crate) use footnote_definition::IFootnoteDefinition;
|
||||
pub(crate) use footnote_reference::IFootnoteReference;
|
||||
pub(crate) use heading::IHeading;
|
||||
pub(crate) use horizontal_rule::IHorizontalRule;
|
||||
pub(crate) use inline_babel_call::IInlineBabelCall;
|
||||
pub(crate) use inline_source_block::IInlineSourceBlock;
|
||||
pub(crate) use italic::IItalic;
|
||||
pub(crate) use keyword::IKeyword;
|
||||
pub(crate) use latex_environment::ILatexEnvironment;
|
||||
pub(crate) use latex_fragment::ILatexFragment;
|
||||
pub(crate) use line_break::ILineBreak;
|
||||
pub(crate) use object::IObject;
|
||||
pub(crate) use org_macro::IOrgMacro;
|
||||
pub(crate) use page::BlogPostPage;
|
||||
pub(crate) use paragraph::IParagraph;
|
||||
pub(crate) use plain_link::IPlainLink;
|
||||
pub(crate) use plain_list::IPlainList;
|
||||
pub(crate) use plain_text::IPlainText;
|
||||
pub(crate) use planning::IPlanning;
|
||||
pub(crate) use property_drawer::IPropertyDrawer;
|
||||
pub(crate) use quote_block::IQuoteBlock;
|
||||
pub(crate) use radio_link::IRadioLink;
|
||||
pub(crate) use radio_target::IRadioTarget;
|
||||
pub(crate) use regular_link::IRegularLink;
|
||||
pub(crate) use section::ISection;
|
||||
pub(crate) use special_block::ISpecialBlock;
|
||||
pub(crate) use src_block::ISrcBlock;
|
||||
pub(crate) use statistics_cookie::IStatisticsCookie;
|
||||
pub(crate) use strike_through::IStrikeThrough;
|
||||
pub(crate) use subscript::ISubscript;
|
||||
pub(crate) use superscript::ISuperscript;
|
||||
pub(crate) use table::ITable;
|
||||
pub(crate) use target::ITarget;
|
||||
pub(crate) use timestamp::ITimestamp;
|
||||
pub(crate) use underline::IUnderline;
|
||||
pub(crate) use verbatim::IVerbatim;
|
||||
pub(crate) use verse_block::IVerseBlock;
|
||||
|
||||
Reference in New Issue
Block a user