no-incode-comments 0.1.0

A proc macro that removes in-code comments from the code
Documentation
1
2
3
4
5
6
7
8
9
10
use no_incode_comments::external_doc;

#[external_doc(path = "examples/docs/function.md", key = "MyFunction")]
pub fn my_function() {
    println!("Hello from my_function!");
}

fn main() {
    my_function();
}