+
+ reStructuredText
+ Títulos
+
+ Abaixo do texto, p.ex.
+
+ Título
+######
+
+
+ O caracter define o nível do tíulo. Depois de
+ #
, vem *
, =
,
+ -
, ^
e
+ "
.
+
+
+
+
+ reStructuredText
+ Markup
+
+ Um *asterísco* para itálico.
+ Dois **asteríscos** para negrito.
+ Duas ``crases`` para código
.
+
+
+
+ reStructuredText
+ Listas
+
+ *
no começo da linha para bullets.
+
+ * Listas podem ter
+ mais de uma linha.
+
+
+
+ reStructuredText
+ Listas
+
+ Um número ou #
seguido de ponto para uma lista numerada.
+
+ 1. Item 1.
+2. Item 2.
+
+
+
+ reStructuredText
+ Listas
+
+ Para sublistas, basta identar.
+
+ * Item 1
+ * Item 1.1
+ * Item 1.2
+* Item 2
+
+
+
+ reStructuredText
+
+
+ E ainda:
+
+
+ - Tabelas!
+ - Citações!
+ - Listas de definições!
+ - COMMANDOS ESPECIAIS!
+
+
+
+
+
+ Sphinx
+
+ Certifique-se que Sphinx está instalado no virtualenv ativo.
+
+ É bobo falar isso, mas é que ele não surge do nada.
+
+
+
+ Sphinx
+
+ Primeira vez? sphinx-quickstart docs
+
+ Responda o wizard.
+
+
+ Importante:
+ > autodoc: automatically insert docstrings from modules (y/n) [n]: y
+
+
+
+ (Se você esqueceu disso, é possível editar o arquivo de configuração depois.)
+
+
+
+
+ Sphinx
+
+ |-- Makefile
+|-- build
+`-- source
+ |-- _static
+ |-- _templates
+ |-- conf.py
+ `-- index.rst
+
+
+
+ Sphinx
+
+ Welcome to THE PROJECT!'s documentation!
+========================================
+
+Contents:
+
+.. toctree::
+ :maxdepth: 2
+
+
+
+Indices and tables
+==================
+
+* :ref:`genindex`
+* :ref:`modindex`
+* :ref:`search`
+
+
+
+ Sphinx
+
+
+ make html
+
+
+
+
+ Sphinx
+
+
+
+
+
+
+
+ Sphinx
+
+ source/about.rst
+
+ About the project
+#################
+
+*PROJECT!* is a **SUPER AWESOME** project.
+
+Believe us!
+
+
+
+ Sphinx
+
+
+ make html
+
+
+
+ checking consistency... /private/tmp/docs/source/about.rst:: WARNING: document isn't included in any toctree
+
+
+
+
+ Sphinx
+
+ source/index.rst
+
+ Contents:
+
+.. toctree::
+ :maxdepth: 2
+
+ about
+
+
+
+ Sphinx
+
+
+
+
+
+ Sphinx
+
+
+
+
+
+
+
+ Autodoc
+
+ Lembra do
+ > autodoc: automatically insert docstrings from modules (y/n) [n]: y
+ ?
+
+
+
+ Autodoc
+
+ source.py
+
+
+
#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+
+"""This is a SUPER MODULE of the PROJECT! project."""
+
+
+def awesome():
+ """AWESOME function."""
+ return 'AWESOME!'
+
+
+
+
+ Autodoc
+
+ source/source.rst
+
+ THE SOURCE
+##########
+
+.. autofunction:: source.awesome
+
+
+
+ Autodoc
+
+ source/conf.py <- configuração do Sphinx
+
+ # If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+sys.path.insert(0, os.path.abspath('../../src'))
+
+ IMPORTANTE!
+ É relativo ao conf.py
, não do diretório do make
.
+
+
+
+ Autodoc
+
+
+
+
+
+ Autodoc
+
+ source.py
+
+
+
def cool(name, awesomeness_level=100):
+ """Just a cool function.
+
+ :param str name: The cool person name.
+ :param awesomeness_level: Their awesomeness level.
+ :type awesomeness_level: int or None
+
+ :return: A message for the cool person.
+ :rtype: str
+
+ :raises ValueError: if the awesomeness level is over 9000.
+
+ :note: For true awesomeness, check :py:func:`source.awesome`.
+ """
+ return '{name} is just cool, not awesome'.format(name=name)
+
+
+
+
+ Autodoc
+
+ source/source.rst
+
+ THE SOURCE
+##########
+
+.. autofunction:: source.awesome
+.. autofunction:: source.cool
+
+
+
+ Autodoc
+
+
+
+
+
+ Autodoc
+
+ ... peraí...
+
+ Cadê a documentação do módulo?
+
+
+
+ Autodoc
+
+ source/source.rst
+
+
+
THE SOURCE
+##########
+
+.. .. autofunction:: source.awesome
+.. .. autofunction:: source.cool
+
+.. automodule:: source
+ :members:
+
+
+
+
+ Autodoc
+
+
+
+
+
+ Autodoc
+
+
+ autoclass
: documentação da classe inteira.
+ :members:
: contém a lista de membros a serem listados, none = tudo.
+ :undoc-members:
: usado com :members:
, remove itens individuais da lista.
+
+
+