From ef4d315bf271614def06850a92f182a06f7f5b2a Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Tue, 31 Oct 2023 20:02:46 -0400 Subject: [PATCH] Run cargo fix. --- src/context/code.rs | 6 +++--- src/context/entity.rs | 6 +++--- src/context/footnote_reference.rs | 6 +++--- src/context/inline_source_block.rs | 6 +++--- src/context/plain_text.rs | 6 +++--- src/context/src_block.rs | 6 +++--- src/context/target.rs | 6 +++--- src/context/verbatim.rs | 6 +++--- 8 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/context/code.rs b/src/context/code.rs index e03032d..b7ff530 100644 --- a/src/context/code.rs +++ b/src/context/code.rs @@ -19,9 +19,9 @@ render!( RenderCode, ICode, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderCode { contents: original.contents.clone(), diff --git a/src/context/entity.rs b/src/context/entity.rs index 4b60a44..f4c2ec9 100644 --- a/src/context/entity.rs +++ b/src/context/entity.rs @@ -19,9 +19,9 @@ render!( RenderEntity, IEntity, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderEntity { html: original.html.clone(), diff --git a/src/context/footnote_reference.rs b/src/context/footnote_reference.rs index ce74306..0b188cc 100644 --- a/src/context/footnote_reference.rs +++ b/src/context/footnote_reference.rs @@ -21,9 +21,9 @@ render!( RenderFootnoteReference, IFootnoteReference, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderFootnoteReference { reference_id: original.get_reference_id(), diff --git a/src/context/inline_source_block.rs b/src/context/inline_source_block.rs index 4c3f313..637678c 100644 --- a/src/context/inline_source_block.rs +++ b/src/context/inline_source_block.rs @@ -19,9 +19,9 @@ render!( RenderInlineSourceBlock, IInlineSourceBlock, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderInlineSourceBlock { value: original.value.clone(), diff --git a/src/context/plain_text.rs b/src/context/plain_text.rs index 15d91c3..00dfda8 100644 --- a/src/context/plain_text.rs +++ b/src/context/plain_text.rs @@ -19,9 +19,9 @@ render!( RenderPlainText, IPlainText, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderPlainText { source: original.source.clone(), diff --git a/src/context/src_block.rs b/src/context/src_block.rs index 16735ce..f6161f8 100644 --- a/src/context/src_block.rs +++ b/src/context/src_block.rs @@ -19,9 +19,9 @@ render!( RenderSrcBlock, ISrcBlock, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderSrcBlock { lines: original.lines.clone(), diff --git a/src/context/target.rs b/src/context/target.rs index 0509e84..9a04061 100644 --- a/src/context/target.rs +++ b/src/context/target.rs @@ -19,9 +19,9 @@ render!( RenderTarget, ITarget, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderTarget { id: original.id.clone(), diff --git a/src/context/verbatim.rs b/src/context/verbatim.rs index 941317f..0314b63 100644 --- a/src/context/verbatim.rs +++ b/src/context/verbatim.rs @@ -19,9 +19,9 @@ render!( RenderVerbatim, IVerbatim, original, - config, - output_directory, - output_file, + _config, + _output_directory, + _output_file, { Ok(RenderVerbatim { contents: original.contents.clone(),