Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build documentation website with MkDocs? #417

Open
milanmlft opened this issue Jul 4, 2024 · 0 comments
Open

Build documentation website with MkDocs? #417

milanmlft opened this issue Jul 4, 2024 · 0 comments
Labels
documentation Improvements or additions to documentation suggestion What about X?

Comments

@milanmlft
Copy link
Member

Was following this excellent Real Python tutorial on Building Python Project Documentation With MkDocs and was wondering whether this might be useful to set up for PIXL as well?

It would imply making our docstrings compatible with mkdocs though, which requires the following syntax:

def add(a, b):
    """Compute and return the sum of two numbers.

    Args:
        a (float): A number representing the first addend in the addition.
        b (float): A number representing the second addend in the addition.

    Returns:
        float: A number representing the arithmetic sum of `a` and `b`.
    """
    return float(a + b)

Guess there's a bunch of other tools out there to generate the documentation, but mkdocs is the only one with a green light from our python-tooling friends.

Happy to discuss!

@milanmlft milanmlft added documentation Improvements or additions to documentation suggestion What about X? labels Jul 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation suggestion What about X?
Projects
None yet
Development

No branches or pull requests

1 participant