docstr 0.4.10

Ergonomic multi-line string literals
Documentation
fn main() {
    docstr::docstr!(format
        /// hello {world}
    );

    docstr::docstr!(std format
        /// hello {world}
    );

    docstr::docstr!(std format!
        /// hello {world}
    );

    docstr::docstr!(std:::format!
        /// hello {world}
    );

    docstr::docstr!(std:format!
        /// hello {world}
    );

    docstr::docstr!(::std::format::!
        /// hello {world}
    );
}