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
11
12
13
14
15
# custom_function

This is documentation for my_function. 

It will be used as the documentation for the function.

```rust
fn custom_function() {
    println!("Hello, world!");
}
```

# Another Section

This section would not be pulled in by the above example.