rustdoc-stripper 0.1.0

A tool to manipulate rustdoc comments
Documentation
///  struct Foo comment
struct Foo {
    ///  Foo comment
    ///  fn some_func(a: u32,
    ///               b: u32) {}
    A: u32,
}

mod Bar {
    test! {
        ///  struct inside macro
        struct SuperFoo;
        sub_test! {
            ///  and another one!
            struct FooFoo {
                x: u32,
            }
        }
    }
}