displaydoc 0.2.6

A derive macro for implementing the display Trait via a doc comment and string interpolation
Documentation
use displaydoc::Display;

#[derive(Display)]
/// Multi
/// line
/// doc
/// with
/// line
/// break
///
/// is
/// pretty
/// not
/// swell
/// 😞👊
struct TestType;

static_assertions::assert_impl_all!(TestType: core::fmt::Display);

fn main() {}