]> git.lizzy.rs Git - rust.git/commitdiff
big fences to show that ```rust is the same as ```
authorQuietMisdreavus <grey@quietmisdreavus.net>
Mon, 12 Mar 2018 21:15:38 +0000 (16:15 -0500)
committerQuietMisdreavus <grey@quietmisdreavus.net>
Mon, 12 Mar 2018 21:15:38 +0000 (16:15 -0500)
src/doc/rustdoc/src/documentation-tests.md

index e5a603a3709f6453dc4eaa4ca4610b69bbd94afe..cc7b15812ec34f2da7bb3fe7fad09665a9e14136 100644 (file)
@@ -19,15 +19,19 @@ running `rustdoc --test foo.rs` will extract this example, and then run it as a
 Please note that by default, if no language is set for the block code, `rustdoc`
 assumes it is `Rust` code. So the following:
 
+``````markdown
 ```rust
 let x = 5;
 ```
+``````
 
 is strictly equivalent to:
 
+``````markdown
 ```
 let x = 5;
 ```
+``````
 
 There's some subtlety though! Read on for more details.