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