Run cargo fix.
This commit is contained in:
parent
2142b01967
commit
ef4d315bf2
@ -19,9 +19,9 @@ render!(
|
||||
RenderCode,
|
||||
ICode,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderCode {
|
||||
contents: original.contents.clone(),
|
||||
|
@ -19,9 +19,9 @@ render!(
|
||||
RenderEntity,
|
||||
IEntity,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderEntity {
|
||||
html: original.html.clone(),
|
||||
|
@ -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(),
|
||||
|
@ -19,9 +19,9 @@ render!(
|
||||
RenderInlineSourceBlock,
|
||||
IInlineSourceBlock,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderInlineSourceBlock {
|
||||
value: original.value.clone(),
|
||||
|
@ -19,9 +19,9 @@ render!(
|
||||
RenderPlainText,
|
||||
IPlainText,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderPlainText {
|
||||
source: original.source.clone(),
|
||||
|
@ -19,9 +19,9 @@ render!(
|
||||
RenderSrcBlock,
|
||||
ISrcBlock,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderSrcBlock {
|
||||
lines: original.lines.clone(),
|
||||
|
@ -19,9 +19,9 @@ render!(
|
||||
RenderTarget,
|
||||
ITarget,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderTarget {
|
||||
id: original.id.clone(),
|
||||
|
@ -19,9 +19,9 @@ render!(
|
||||
RenderVerbatim,
|
||||
IVerbatim,
|
||||
original,
|
||||
config,
|
||||
output_directory,
|
||||
output_file,
|
||||
_config,
|
||||
_output_directory,
|
||||
_output_file,
|
||||
{
|
||||
Ok(RenderVerbatim {
|
||||
contents: original.contents.clone(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user