How to write documentation¶
This guide explains how to write and contribute to the documentation for the PyMRITools project. It covers the documentation structure, how the configuration works, and how the documentation is automatically built and deployed.
Documentation Structure¶
The documentation for this project is built using MkDocs, a fast and simple static site generator that's geared towards building project documentation. The documentation source files are written in Markdown and are stored in the docs/
directory of the repository.
Understanding the MkDocs Configuration¶
The mkdocs.yml
file at the root of the repository is the configuration file for MkDocs. It defines:
- Basic information: Site name, description, and author
- Repository information: Repository name, URL, and edit URI
- Theme: The visual theme for the documentation (we use ReadTheDocs)
- Markdown extensions: Additional Markdown features enabled
- Navigation structure: The organization of pages in the documentation
- Plugins: Additional functionality for the documentation
When you want to add a new documentation page, you need to:
- Create a Markdown file in the
docs/
directory or a subdirectory - Add the page to the
nav
section inmkdocs.yml
if you want it to appear in the navigation menu
Automatic Documentation Building with GitHub Actions¶
One of the powerful features of our documentation setup is that it's automatically built and deployed whenever changes are pushed to the main
branch.
This is done using GitHub Actions, a continuous integration and continuous deployment (CI/CD) platform.
How it Works¶
- Trigger: When someone pushes changes to the
main
branch - Build Environment: GitHub Actions sets up a virtual machine with Ubuntu
- Setup: Python is installed, along with MkDocs
- Build and Deploy: MkDocs builds the documentation and deploys it to GitHub Pages
The entire process is defined in the .github/workflows/mkdocs.yml
file:
What This Means for Contributors¶
As a contributor, you don't need to worry about manually building or deploying the documentation. When your changes are merged into the main branch:
- GitHub Actions automatically detects the changes
- It builds the documentation using MkDocs
- It deploys the built documentation to the
gh-pages
branch - GitHub Pages serves the documentation from the
gh-pages
branch
This means you can focus on writing good documentation content without worrying about the technical details of deployment.
Writing Documentation¶
When writing documentation:
- Use Markdown: All documentation is written in Markdown format
- Follow the structure: Place your files in the appropriate directories
- Update navigation: Add your page to the
nav
section inmkdocs.yml
if needed - Preview locally: You can run
mkdocs serve
locally to preview changes - Commit and push: Once you're satisfied, commit your changes and create a pull request
Rules for Writing¶
There is a small set of rules that are non-negotiable:
- Always write in English and use spell and grammar check. In PyCharm you can use the Grazie plugin for checking your English.
- Start a new line after the end of each sentence. This makes it much easier to see differences in pull-requests.
- Always remember, you are writing documentation for people who don't know how things work. Be precise and clear in your writing. Your future You will thank you.
Markdown Tips¶
MkDocs supports standard Markdown syntax plus some extensions:
# Heading 1
## Heading 2
*Italic text*
**Bold text**
- Bullet point
- Another bullet point
1. Numbered item
2. Another numbered item
[Link text](https://example.com)

`inline code`
!!! note
This is an admonition box for notes
Testing Your Documentation Locally¶
Before submitting your changes, it's a good idea to preview them locally:
- Either use the conda environment from
python_setup/environment.yml
or install MkDocs:pip install mkdocs
- Navigate to the repository root
- Run
mkdocs serve
- Open your browser to
http://127.0.0.1:8000/
This will give you a live preview of the documentation that updates as you make changes.