An open API service indexing awesome lists of open source software.

https://github.com/patrick91/rusty-docs

rusty-docs
https://github.com/patrick91/rusty-docs

Last synced: 4 months ago
JSON representation

rusty-docs

Awesome Lists containing this project

README

          

# Rusty docs

A simple documentation generator for Python code. This is meant to be a tool
that generates markdown files from docstrings in your code. It is been designed
to be used by [Strawberry GraphQL](https://strawberry.rocks)'s source code, so
it might not be the best tool for your use case. However, if you are interested
in using it, feel free to open an issue or a PR!

## Roadmap

- [ ] WASM library
- [ ] Python library
- [x] Generate markdown files
- [ ] Extract docs from classes
- [ ] Extract docs from methods
- [x] Extract docs from functions
- [ ] Extract docs from modules

## Installation

TBC

## Usage

TBC

## Test

```bash
cargo test
```

### Review snapshots

```bash
cargo install cargo-insta
cargo insta review
```