Fundoc - the right way to generate documentation. A business feature in your project may be implemented in separated files and even in different technologies. Fundoc can merge all descriptions of business features and put in appropriate files.
Fundoc's main goals:
If you want to keep your documentation synchronised with your code and to be able to describe different parts of a business feature in in places where it was implemented, like:
src/api/orders.rs
```rust // An API layer which implements "orders" in your system
fn get_orders(params: ReqParams) { /** * @ Article Orders * * A description part of whole "orders" feature about logic of how to get them * / ... // Some code here } ```
src/utils/orders.rs
```rust // Utils functions for parsing/validating/etc orders
fn validate_order(order: Order) { /** * @ Article Orders * * A description part of whole "orders" feature about their validation rules * / ... // Some code here } ```
orders.md
```markdown
A description part of whole "orders" feature about logic of how to get them ~
A description part of whole "orders" feature about their validation rules ~ ```
So it can help you to change only that part of documentation which is connected to the code you're changing. And your team members can easily find the source of a documentation part using generated links on source files.
By the way, documentation here is generated by fundoc itself, so you can check out how it works.
You can install fundoc by executing this shell script:
bash
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- --git daynin/fundoc
If you're rust developer and you have had rust compiler installed, you can install fundoc from crates.io:
bash
cargo install fundoc
Or manually download it from the releases page.
Just create a config file (read configuration docs here), start to write docstrings in your files according to fundoc's syntax, run fundoc
to generate documentation: