Closes #18
I added a pre-commit task that generates docs/api.md.
Nothing fancy, but shows all documented functions.
The only caveat is that we have to use google-style docstrings rather than numpy-style:
Example:
def function(param1: int, param2: str) -> bool:
"""Example function.
Args:
param1: The first parameter.
param2: The second parameter.
Returns:
The return value. True for success, False otherwise.
"""
Closes #18 I added a pre-commit task that generates
docs/api.md
. Nothing fancy, but shows all documented functions.The only caveat is that we have to use google-style docstrings rather than numpy-style: Example: