This repository hosts a set of example artifacts found in MR perfusion imaging.
You will need to install poetry (a dependency manager) to contribute to this repository. You can do this by running:
curl -sSL https://install.python-poetry.org | python3 -This will let you install the dependencies (mkdocs and pre-commit) for this repository by running (in the environment you want to install the dependencies):
poetry installTo serve the documentation locally, run:
mkdocs serveYou can edit the markdown files in the docs folder to update the documentation.
To change the orgnization of the documentation, edit the mkdocs.yml file.
To run the pre-commit checks, run:
pre-commit run --all-filesThis will let you check if your markdown files are formatted correctly, as well as a few other checks before you commit your changes. (Intended to catch errors before early)