Some More Features of Sphinx
Get to know some more features of Sphinx.
We'll cover the following...
Cross-referencing
Sphinx also supports extensive cross-referencing capabilities. One simple way to create references is to create a label before a heading with .. _some_reference:
, and then reference it from any file using :ref:‘some_reference‘
. References to external URLs are simple—we just use something like .. _some_reference: http://python.org
to create the reference and :ref:‘some_reference‘
to use it. If we find ourselves using many external URL references, ...