.. include:: global.rst ******************* Using Sphinx ******************* .. note:: :collapsible: In order for a page to work it needs a title. It will not build without one. .. warning:: Code Ahead! .. code-block:: c++ #include using namespace std; int main() { cout << "Hello World!" << endl; return 0; } .. code-block:: python :caption: this.py :name: 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 ` The second shows the word Glossary like this: :ref:`Glossary `. .. list-table:: Example Table :header-rows: 1 * - Name - Age - Occupation * - Alice - 25 - Engineer * - Bob - 30 - Designer * - Charlie - 22 - Student