mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Fix indentation of code blocks
This commit is contained in:
parent
51c52d5280
commit
faceb2b77b
1 changed files with 42 additions and 42 deletions
84
README.md
84
README.md
|
@ -25,52 +25,52 @@ colorized. Install with `pip install Pygments`.
|
|||
`$ cat src/main.rs`
|
||||
|
||||
> ```rust
|
||||
#[derive(Debug)]
|
||||
struct S;
|
||||
|
||||
fn main() {
|
||||
println!("{:?}", S);
|
||||
}
|
||||
```
|
||||
> #[derive(Debug)]
|
||||
> struct S;
|
||||
>
|
||||
> fn main() {
|
||||
> println!("{:?}", S);
|
||||
> }
|
||||
> ```
|
||||
|
||||
`$ cargo expand`
|
||||
|
||||
> ```rust
|
||||
#![feature(prelude_import)]
|
||||
#![no_std]
|
||||
#[prelude_import]
|
||||
use std::prelude::v1::*;
|
||||
#[macro_use]
|
||||
extern crate std as std;
|
||||
struct S;
|
||||
#[automatically_derived]
|
||||
#[allow(unused_qualifications)]
|
||||
impl ::std::fmt::Debug for S {
|
||||
fn fmt(&self, __arg_0: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
||||
match *self {
|
||||
S => {
|
||||
let mut builder = __arg_0.debug_tuple("S");
|
||||
builder.finish()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
::io::_print(::std::fmt::Arguments::new_v1({
|
||||
static __STATIC_FMTSTR:
|
||||
&'static [&'static str]
|
||||
=
|
||||
&["", "\n"];
|
||||
__STATIC_FMTSTR
|
||||
},
|
||||
&match (&S,) {
|
||||
(__arg0,) =>
|
||||
[::std::fmt::ArgumentV1::new(__arg0,
|
||||
::std::fmt::Debug::fmt)],
|
||||
}));
|
||||
}
|
||||
```
|
||||
> #![feature(prelude_import)]
|
||||
> #![no_std]
|
||||
> #[prelude_import]
|
||||
> use std::prelude::v1::*;
|
||||
> #[macro_use]
|
||||
> extern crate std as std;
|
||||
> struct S;
|
||||
> #[automatically_derived]
|
||||
> #[allow(unused_qualifications)]
|
||||
> impl ::std::fmt::Debug for S {
|
||||
> fn fmt(&self, __arg_0: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
||||
> match *self {
|
||||
> S => {
|
||||
> let mut builder = __arg_0.debug_tuple("S");
|
||||
> builder.finish()
|
||||
> }
|
||||
> }
|
||||
> }
|
||||
> }
|
||||
>
|
||||
> fn main() {
|
||||
> ::io::_print(::std::fmt::Arguments::new_v1({
|
||||
> static __STATIC_FMTSTR:
|
||||
> &'static [&'static str]
|
||||
> =
|
||||
> &["", "\n"];
|
||||
> __STATIC_FMTSTR
|
||||
> },
|
||||
> &match (&S,) {
|
||||
> (__arg0,) =>
|
||||
> [::std::fmt::ArgumentV1::new(__arg0,
|
||||
> ::std::fmt::Debug::fmt)],
|
||||
> }));
|
||||
> }
|
||||
> ```
|
||||
|
||||
To expand a particular test target:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue