docify_macros 0.4.1

Support macros for docify.
Documentation
1
2
3
4
5
6
7
8
9
#[docify::export]
fn some_fn() {
    println!("foo");
}

#[docify::export]
fn some_other_fn() {
    println!("bar");
}