LEARNING


Note

How to Escape Special Characters

* Back Slash to Escape Special Characters.

Attention

Build Command: sphinx-build doc _build

This is the command to build instead of ‘make’.

Header Sizes


H1: document title

Introduction text.

Sample H2

Sample content.

Another H2

Sample H3

  1. The largest Header size is designated by underlining the header with:

====

ie. HEADER

_____________________

  1. The second size Header is designated by four or more dashes - - - - :

-----
  1. The third size Header is designated by four or more tildes ~ ~ ~ ~ :

~~~~

To create a line across the page use:

#### or - - - - with no spaces.

_____________

Alternate Method of bolding:

Note

Note: Indenting four equals ‘= = = =’ signs, yields a bolding of the text. See below.

_images/indent_equals.png
‘Code block ends’

This is comparable to using ** ** for bolding as seen below:

‘Code block ends’


1.. code-block:: python
2   :linenos:
3
4   def hello():
5    print("Hello, world!")

Note

We do not need to escape special characters in code-blocks. ‘:linenos:’ adds lines and needs opens and closes with : :


.. image:: ./Images/EmbedImages.png
   :width: 400px
   :align: left
_images/EmbedImages.png
Using directories:
.. image:: ./Images/EmbedImages.png

This is the :ref: target page <target> for more information.