doctest-file 1.1.1

Sources doctests from dedicated files into Rustdoc documentation while hiding select lines
Documentation
1
2
3
4
5
6
7
8
9
10
//{
use crate::plus_1;
#[test]
fn main() {
    //}
    // You can write thoughtful comments in your doctests.
    //
    // They will not be mangled even if you put blank lines in them.
    println!("plus_1(1) = {}", plus_1(1));
} //