69. Skip to content

69. Documentation overview

This section provides an overview of how the documentation system works.

69.1 Background

Welcome to the instructions for those wishing to contribute to our documentation!

Our documentation system is based on the popular mkdocs system. We encourage you to read the upstream documentation from mkdocs for the finer details of how mkdocs. In particular, read this page before you get to work. Mkdocs is not hard, but it may feel initially a little different if you are used to creating your documentation in word.

We use mkdocs because it has some great and useful features. Most especially:

  • The code and the documentation are versioned together. This means that for whatever version of the code we have in our production release, we can be sure the documentation matches that release. We can also look back at changes over time through the version history when needed.
  • It can render beautiful static (not needing a backend server) web sites with great features like search, styling, intuitive navigation etc.
  • It can optionally render PDF documents from the same source markdown.
  • An ecosystem of plugins and themes makes mkdocs really flexible and extensible.

69.1.1 Some terminology

In our documentation, we have organised the information using a specific nomenclature:

  • guide: A guide is a multi-step workflow / tutorial that leads your through common activities.
  • manual: A collection of documents that describe each part of the project in a matter of fact way without presupposing any specific workflow is being undertaken.

For each of the main topic areas (user, admin, developer, devops, api user) we provide guides and manuals as is appropriate.

69.1.2 Organisation

The documentation is broadly organised in the following structure. This structure may change over time as sections are added / moved / removed:

src
├── about
├── administrator
│   ├── guide
│   └── manual
├── developer
│   ├── documentation
│   ├── guide
│   └── manual
├── devops
│   ├── guide
│   └── manual
└── user
    ├── api
    ├── guide
    ├── manual
    └── quickstart

69.2 File naming conventions

Please follow these conventions when writing your documentation:

  1. Write file names in all lower case, with hyphens separating words (no spaces). e.g. important-file.md not Important File.md or other deviations.
  2. Place the image files in the img folder adjacent to your content.
  3. Do not abbreviate any words in file names - but try to use terse, descriptive names.
  4. Place your content into the appropriate place as outline in the structure above.
  5. Each file should only one level one heading e.g. # Page title
  6. Headings and subheadings should be written as a terse phrase starting with a capital letter and subsequent words in lower case unless they are proper nouns. Do not place a colon after the heading.
  7. Use unicode number markers to reference numbers in images e.g. 1️⃣
  8. Every heading / sub-heading should have a single line underneath it summarising the content that will follow. This sentence will be used in the help center in the application to give the user a reference point for the text that will follow. It also makes the help text more consistent and readable.
  9. For every section that images, the first image will be used as the thumbnail if the heading is referenced from the application.

69.3 Contributing to the documentation

✏ Note: The repo name in the images below is blurred out, you should work against the [PROJECT_NAME] repository when following these notes.

To start adding to the documentation navigate to the home page of the repository.

Once on the repository home page, 1️⃣ click on Fork Fork Repository 1

On the next page 1️⃣ Make sure your github account is selected as the owner and 2️⃣ make sure the "Copy the main branch only" option is ticked as you will only need the main branch. Fork Repository 2

Once you have forked the repository, ensure that you are working in the main branch. Change Branch

Once you are in your fork of the repository, click on . on your keyboard. This will open a web editor where you can begin adding to, or editing, the documentation. Web Editor 1

Once the editor loads, you will be greeted by 1️⃣ a preview of the project's README.txt. 2️⃣ Click on the docs directory in the menu on the left, this will expand the directory. To confirm that you are working in the right branch 3️⃣️ it will say main in the bottom left of the editor. Web Editor 2

Once you have expanded the docs directory, 1️⃣ click on the src directory. All sub-directories within the src directory contain the files that become the documentation. Each sub-directory contains an index.md file that is required for the building of the documentation and static site. If you add a new sub-directory into any folder it must also contain a populated index.md file. Web Editor 3

Once you have chosen which section of documentation you would like to edit (e.g. user/guide/index.md), click on the file and it will open in the web editor. Web Editor 4

Once you have the file open, you can start adding to the documentation using Markdown syntax. If you need to add images to your documentation, add them to the relative img sub-directories following the naming conventions set out in the naming-convention.README within the img folders. Web Editor 5

When you have completed making additions to (or editing) the documentation, 1️⃣ click on the source control tab then 2️⃣ click on the plus symbol next to the changes you are finished with to stage them, 3️⃣️ add a commit message that is associated with the work you have done, and the 4️⃣ Click on Commit & Push Web Editor 6

Once you have committed your changes, 1️⃣ Click on the burger menu and then 2️⃣ click on Go To Repository Web Editor 7

Your fork of the repository will be opened in a new tab within your browser, navigate to that tab. Once there 1️⃣ ensure you are on the main, you should see how many commits ahead of the upstream branch you are, then 2️⃣ click on Contribute-> Open pull request. Pull Request 1

On the next screen, 1️⃣ give your pull request a meaningful title, 2️⃣ give additional details regarding changes made in the larger text box, then 3️⃣️ click on Create pull request. Also ensure you are creating a pull request to the upstream main branch from your main branch. Pull Request 2

Once your pull request is opened you need to wait for it to be merged before you can open a new one.

69.4 Creating new files

Open the Web Editor by clicking on . on your keyboard when you are on your fork of the repository. The screen below should appear until the editor loads.

Web Editor 1

Navigate to the relative subfolder within the src folder to which you would like to add a new file. (e.g. src -> user -> manual). Also ensure that you are in the Explorer tab 1️⃣ of the web editor.

New File 1

Once you have selected a subfolder, click on the New File... button 1️⃣ to the right of the repository name.

New File 2

Give your file a meaningful name (following the 69.2 File naming conventions from above) and end the file name with .md to ensure that the file is saved as a markdown file. Once you have given your file a name, click Enter on your keyboard to finish creating it.

New File 3

Once you have created a new file, you can start adding to the documentation using Markdown syntax. You must add a header section to each new file! Please read the 69.4.1 Page metadata section below regarding adding the standard header to new files.

New File 4

If you need to add images to your documentation, add them to the relative img subfolders following the naming conventions set out in the naming-convention.README within the img subfolders (e.g. images for the User Guide would be added to the user/guide/img/ subfolder 1️⃣). Adding images is explained further in the 69.5 Uploading images / media section further down the page.

Web Editor 5

Hint: You can click on the naming-convention.README file to view it and, in turn, read the image naming conventions. Just remember to switch back to the document that you are working on.

When you have completed making additions to (or editing) the documentation, click on the source control tab 1️⃣, then click on the plus symbol 2️⃣ next to the changes you are finished with to stage them, add a commit message 3️⃣️ that is associated with the work you have done, and the click on Commit & Push 4️⃣.

Web Editor 6

Once you have committed your changes, Click on the burger menu 1️⃣ and then click on Go To Repository 2️⃣.

Web Editor 7

Your fork of the repository will be opened in a new tab within your browser, navigate to that tab (your browser might block pop ups, so you might need to manually open the pop up to get back to your fork of the repository). Once there, ensure you are on the main branch 1️⃣ (you should see how many commits ahead of the upstream branch you are), then click on Contribute 2️⃣ -> Open pull request 3️⃣️.

Pull Request 1

On the next screen, give your pull request a meaningful title 1️⃣, give additional details regarding changes made in the larger text box 2️⃣, then click on Create pull request 3️⃣️. Also ensure you are creating a pull request to the upstream main branch from your main branch.

Pull Request 2

Once your pull request is opened you need to wait for it to be merged before you can open a new one.

69.4.1 Page metadata

Whenever you create a new file, you should add the standard header to the top of the file:

---
title: PROJECT_TITLE
summary: PROJECT_SUMMARY
    - PERSON_1
    - PERSON_2
date: DATE
some_url: PROJECT_GITHUB_URL
copyright: Copyright 2023, PROJECT_OWNER
contact: PROJECT_CONTACT
license: This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
#context_id: 1234
---

The summary can be updated to include your name for documents you contribute to.

The context_id is used to create a unique permalink to this document, and is optional. See further down in this document for more details.

All pages need to be added to the 'Nav' section of the mkdocs-base.yml file. This will ensure that it is available in the menus and that mkdocs renders without errors. For example, if you wish to add a new page to the User Guide area, in Nav you would add a line like this:

- Navigating the map: user/guide/map-navigation.md

Sometimes you may not wish to have the new page displayed in the menu system (this can be useful when, for example, it is accessed via a link in another page). In these cases, leave the menu entry part blank e.g.

- "": user/guide/map-navigation.md

Mkdocs will still generate the page but it will not be added to the menu.

69.4.2.1 Editing the 'nav' section

Once you have created a new file (e.g. user/manual/example-file.md 1️⃣), you will need to add it to the site navigation.

Edit navigation 1

To edit the site navigation, click on docs/mkdocs-base.yml 1️⃣.

Edit navigation 2

In the mkdocs-base.yml, scroll down to the nav section and add the file path to the relevant section. E.g. user/manual/example-file.md would be added to Users -> Manual as - Example file: user/manual/example-file.md 1️⃣. Ensure your added page has the correction indentation in the nav section, otherwise the site will not build.

Edit navigation 3

If you have added a page but do not want it to show up in the site navigation, then instead of a page name just put "". E.g. - "": user/manual/example-file.md 1️⃣.

Edit navigation 4

69.5 Uploading images / media

Note: If you wish to upload a gif, or a small video, you can follow the same steps as below (GitHub does limit the upload size to 10 MB).

All folders and subfolders should contain an img subfolder (e.g. user/guide/img/) containing a naming-convention.README. If you add a new folder, then you should add a new img subfolder and copy a naming-convention.README from another existing img subfolder into your newly created folder.

Uploading Images 1

To upload an image, right-click on the relative img subfolder and select upload from the menu that appears.

Uploading Images 2

Select an image from your computer, using the file explore that opens, and then click on the Open Button 1️⃣ (The attached screenshot is from a Linux machine however, Windows also has an open button).

Uploading Images 3

If your image does not follow the naming conventions, right-click on the image, click on Rename... on the menu that appears, and then give your image an appropriate name.

Uploading Images 4

Useful tools for capturing images and screencasts are: Peek (For screencasts), Flameshot (For images), Shutter (For images), and Lightshot (For images)

69.6 Technical notes

69.6.1 Working locally

If you want to work with the documentation locally (i.e. directly on your PC), you need to follow this general process:

  1. Install python
  2. Install pip
  3. Install virtualenv (pip install virtualenv)
  4. Make the docs folder your working directory (cd docs)
  5. Create the virtual env in the docs folder (python -m venv env)
  6. Activate the venv (source env/bin/activate)
  7. Install the python modules listed in docs/requirements.txt (pip install -r requirements.txt)
  8. If you are on Linux or macOS, open the docs directory in a shell and run build-docs-html.sh
  9. In the docs directory, run mkdocs serve
  10. Open your web browser at https://localhost:8000 to view the rendered docs.

Note that mkdocs serve will dynamically re-render the docs any time you make a change. The process above is illustrated in the diagram below:

html workflow

69.6.2 Hooks

We implement two hooks (plugins for mkdocs that are invoked during the docs rendering process).

  • uuid_redirects_hook.py - this is used to handle page redirects from a uuid - see below for more details
  • python_manual_hook.py - this is used to auto-generate the reference guide for the python modules, classes and functions that make up the code base for this project.

If you are a developer, you should be aware of the workflow for creating user and administrator documentation for each page you create.

Every page should have a help link on it that leads to the appropriate manual page. The workflow for doing this is:

  1. Generate a new page UUID using the provided python utility e.g. ./create-uuid.py
  2. Create a new page in the appropriate manual section e.g. docs/src/user/manual/login.md
  3. In the metadata section at the top of the page, add the context id e.g. context_id: V4cVEFd2TmwYJVb5HvWRwa
  4. In your django view, set up your help button to point to the site url and your context id. e.g. https://siteurl/V4cVEFd2TmwYJVb5HvWRwa

Whenever the user visits the page using the UUID URL, they will be redirected to the correct page e.g. https://siteurl/login/. This system protects us from file renaming and reorganising on the site, and ensures that the help link will always remain valid.

69.6.4 Generating PDFS

To generate PDFS, cd into PROJECT_NAME/docs and then run ./build-docs-pdf in a local terminal

69.6.5 Generating static site locally

To generate HTML, cd into PROJECT_NAME/docs and then run ./build-docs-html in a local terminal. You can then run mkdocs serve to generate the static site on your local host, if there is a port conflict you can specify the port using the -a flag e.g mkdocs serve -a 127.0.0.1:8001.


Last update: September 26, 2023