Using Sphinx

Note

In order for a page to work it needs a title. It will not build without one.

Warning

Code Ahead!

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!" << endl;
    return 0;
}
this.py
print('Explicit is better than implicit.')

Glossary

Rather than produce a separate glossary, we use the index to point to where the words are defined in context.

You can refer to the index with:

:ref:`genindex`

or

:ref:`Glossary <genindex>`

The second shows the word Glossary like this: Glossary.

Example Table

Name

Age

Occupation

Alice

25

Engineer

Bob

30

Designer

Charlie

22

Student