Wrap the intermediate Registry in an IntermediateContext.

This is currently just to maintain consistency with the render phase's RenderContext but in the future it should allow us to include immutable data that is not locked behind the ArcMutex.
This commit is contained in:
Tom Alexander
2023-12-21 13:53:56 -05:00
parent 2ae4839ce0
commit 8b85c02ef1
34 changed files with 266 additions and 229 deletions

View File

@@ -27,6 +27,7 @@ mod heading;
mod horizontal_rule;
mod inline_babel_call;
mod inline_source_block;
mod intermediate_context;
mod italic;
mod keyword;
mod latex_environment;
@@ -94,6 +95,7 @@ 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 intermediate_context::IntermediateContext;
pub(crate) use italic::IItalic;
pub(crate) use keyword::IKeyword;
pub(crate) use latex_environment::ILatexEnvironment;