From: ehuss Date: Fri, 27 Jan 2017 16:59:48 +0000 (-0800) Subject: Fix broken code block X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~11^2~14^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a8c3b67cec6873cb5e2a2ea1dfc0fc49fc50818b;p=cargo.git Fix broken code block It seems like the Markdown parser requires a blank line before a code block (otherwise it treats it like an inline span). --- diff --git a/src/doc/manifest.md b/src/doc/manifest.md index bf07ebe26..e5d266d84 100644 --- a/src/doc/manifest.md +++ b/src/doc/manifest.md @@ -461,6 +461,7 @@ You can run individual executable examples with the command `cargo run --example `. Specify `crate-type` to make an example be compiled as a library: + ```toml [[example]] name = "foo"