Instructor guide

Why we teach this lesson

Everyone should document their code, even if they’re working alone.

These two are the most important points:

  • Code documentation has to be versionnable and branchable

  • Code documentation should be tracked together with the source code

Please do not skim over the two above points. Please take few minutes to explain why documentation (sources) should be tracked together with the source code. Please discuss this aspect with workshop participants and connect it to reproducibility. This is for me (Radovan) the most important take-home message.

Specific motivations:

  • Code documentation becomes quickly unmanageable if not part of the source code.

  • It helps people to quickly use your code thus reducing the time spent to explain over and again to new users.

  • It helps people to collaborate.

  • It improves the design of your code.

Intended learning outcomes

By the end of this lesson, learners should:

  • Understand the importance of writing code documentation together with the source code

  • Know what makes a good documentation

  • Learn what tools can be used for writing documentation

  • Be able to motivate a balanced decision: sometimes READMEs are absolutely enough


Timing and lesson placement

Timing

As an instructor you should prepare all bullet points but do not go through each bullet point in detail. Only highlight the main points and rather give time for a discussion. Leave details for a later lecture for those who want to find out more. If you go through each bullet point in detail, the motivation can easily take up 30 minutes and you will run out of time.

Detailed schedule

* 10:45 - 12:30 Documentation
    - 10:45 - 10:55 Motivation and tools
        - create a wishlist in HackMD
    - 10:55 - 11:05 Break
    - 11:00 - 11:20 Writing good README files
        - brief discussion
        - 15 minutes for exercises, choosing either 1, 2 or 3 (or do multiple of time allows)
        - brief discussion
    - 11:20 - 12:00 Sphinx and markdown
        - discussion (5 min)
        - Exercise 1 as type along (10min)
        - Exercise 2, exercise 3 if time allows (20 min)
        - Discussion, going over exercise (5 min)
    - 12:00 - 12:10 Break
    - 12:10 - 12:25 Deploying Sphinx documentation to GitHub Pages
        - Exercise 1 as demo
    - 12:25 - 12:30 Summary

Place this lesson towards the end of the workshop

Reason is that with collaborative Git we can create more interesting documentation exercises. Currently there are some elements of forking and pushing and this is only really introduced on day two.

We have tried this lesson on day one and it felt too early and disconnected/abrupt.

It works best after the reproducibility lesson since we then reuse the example and it feels familiar.

Different combinations of episodes

The lesson is setup in a modular way, episodes can be mixed and matched to tailor the lesson to the audience. Here are two logical ‘itineraries’:

A lesson with a focus on Sphinx and ReadTheDocs:

  1. Wishlist

  2. Tools (briefly)

  3. Readme files

  4. Sphinx

  5. ReadTheDocs (demo)

  6. Github Pages (briefly)

  7. Discussion

A lesson with a focus on in-code-documentation and readme files:

  1. Wishlist

  2. In-code-documentation

  3. Readme files

  4. A quick demo of sphinx and ReadTheDocs, you can use this example project that is deployed to ReadTheDocs here

  5. Discussion

Optional sections

The lesson does not fit into 1.5 hours if you go through everything. Optimize for discussions and prepare well to be able to jump over bullet points which can be left for a later lecture. Some sections can be skipped if needed (see below). However, we recommend to have a discussion with your learners to make them aware of what the training material contains.

  • Do not insist on practicing Markdown or RST syntax

  • The section Rendering (LaTeX) math equations may be optional if your attendees do not have to deal with equations.

  • In the GitHub pages episode, the goal is not anymore to write code documentation but to show how to build project website with Github. If time is tight, the GitHub pages episode can be skipped or can be done as demonstration instead of exercise.


Troubleshooting

Character encoding issues

Can arise when using non-utf8 characters in conf.py. Diagnose this with file -i conf.py and locale.


How to teach this lesson

Things to prepare as instructor

We start from scratch for all the exercises in this lesson.

How to start

With questions about documentation habits and experience with documentation of own code and code written by others.

Questions to involve participants

  • How do you document unpublished features?

Share your experience

The first episodes do not contain any live coding or exercises.

In these first episodes, instructors share their own experience in writing documentation. Feel free to add your own experience and ask learners to share their thoughts too. Stress the importance of understanding the audience you are writing the documentation for (developers, users, etc.) and that starting with a simple tutorial (with a set of tests) is usually a good approach.

In the second episode, we review different tools: the goal here is to highlight what is important when choosing a tool for writing documentation. We have chosen to teach how to use Sphinx with Read the Docs but make sure you bring across that the tools we show are general:

  • Sphinx is not only for Python

  • Read the Docs is not only for Github

In the Sphinx exercise, we first test the availability of Sphinx. This test needs to be done in a terminal where Python is available. It can take a bit of time to get everybody on board with Sphinx. It can be nice to make a short break if you need more time to fix problems.

Live better than reading the website material

It is better to demonstrate the commands live and type-along. Ideally connecting to examples discussed earlier.

In online workshops most of the type-along becomes group exercise work where groups can share screen and discuss.

What worked well in past workshops

It is good if participants see how they can sphinx-quickstart a project from zero.

Then they learn how to deploy an existing project to RTD.

Field reports

2022 September

We were pressed for time (we started 5-10 minutes late, relative to the schedule below), so we made most of the first lessons fast. In the schedule below, note that we had the first 10 minutes for “Motivation” and “Popular tools”, which we didn’t fully realize so that put us even further behind. Doing these introduction parts quickly was hard but was probably worth it since we had plenty of time in the end. For the “tools”, one person summarized the point of each section on the page quickly. The README episode was done quickly, we basically skipped the exercises to get to Sphinx, and this put us back on schedule.

For Sphinx, we did it a lot like you see in the schedule: first exercise (the basic setup) was type-along, but it was a bit too much to do in the 10 minutes we had allotted (we typed too fast). But, people then had a nice long time to make it up and do everything. It seemed to work well. The Github pages deployment could then be done as a nice, slow demo, and we had plenty of time to ask questions.

Overall, I think this was the right track, but we could have practiced doing the first parts even faster, and warned people that we focus on the Sphinx exercises.