This sequence describes the series of transforms I expect for the "round-trip":
pub const PRODIGAL5_MD: &'static str = r#"# Hello World
```rust
let code_fragment;
This looks like it has a nice para break before its starts,
but note the tab
"#;
pub const HARVEST5_RS: &'static str = r#"//@ # Hello World
let code_fragment;
//@
//@ This looks like it has a nice para break before its starts,
//@ but note the tab
"#;
pub const RETURN5_MD: &'static str = r#"# Hello World
let code_fragment;
This looks like it has a nice para break before its starts,
but note the tab
"#;
The problem is that the third part ends up emitting a supposed md section that goes like this insead:
let code_fragment;
//@
This looks like it has a nice para break before its starts,
but note the tab
This sequence describes the series of transforms I expect for the "round-trip":
This looks like it has a nice para break before its starts, but note the tab "#;
pub const HARVEST5_RS: &'static str = r#"//@ # Hello World let code_fragment; //@
//@ This looks like it has a nice para break before its starts, //@ but note the tab "#;
pub const RETURN5_MD: &'static str = r#"# Hello World
This looks like it has a nice para break before its starts, but note the tab "#;
//@ This looks like it has a nice para break before its starts, but note the tab