python Programming Glossary: conf.py
Sphinx LaTeX markup limitations http://stackoverflow.com/questions/13017397/sphinx-latex-markup-limitations otherwise sphinx will barf at math blocks. In the file conf.py I changed extensions to extensions 'sphinx.ext.pngmath' After..
python single configuration file http://stackoverflow.com/questions/2348927/python-single-configuration-file 'teamsdir' property for example . response opted for the conf.py approach then since it it is modular flexible and simple I can.. json file a xml file or multiple sources i just change the conf.py and make sure the data is accessed the same way. accepted answer..
Include a text file *as is* in (Python) Sphinx Docs http://stackoverflow.com/questions/2921724/include-a-text-file-as-is-in-python-sphinx-docs into _build html unaltered . What do I need to alter in conf.py index.rst etc. Here is the layout src index.rst some_doc.rst..
celery-django can't find settings http://stackoverflow.com/questions/3323125/celery-django-cant-find-settings Python26 lib site packages celery 2.0.1 py2.6.egg celery conf.py line 118 in module ALWAYS_EAGER _get CELERY_ALWAYS_EAGER File.. Python26 lib site packages celery 2.0.1 py2.6.egg celery conf.py line 109 in _get value getattr settings alias File c development..
How do I connect sphinx's autodoc-skip-member to my function? http://stackoverflow.com/questions/3757500/how-do-i-connect-sphinxs-autodoc-skip-member-to-my-function this I see Sphinx.connect and I suspect it goes in my conf.py but when I try variations on this code in conf.py I can't find.. in my conf.py but when I try variations on this code in conf.py I can't find the app object that I should connect def maybe_skip_member.. scroll down to the bottom. Apparently a setup function in conf.py will get called with the app. I was able to define the following..
How to make text strikethough in Sphinx http://stackoverflow.com/questions/4410100/how-to-make-text-strikethough-in-sphinx this question I've done this. Require a .CSS in your conf.py html_style 'mydoc.css' In the _static mydoc.css use something..
Automatically Generating Documentation for All Python Package Contents http://stackoverflow.com/questions/4616693/automatically-generating-documentation-for-all-python-package-contents can be automatically generated. I modified my conf.py to add my src folder to sys.path and then modified my index.rst..
How to use Sphinx's autodoc to document a class's __init__(self) method? http://stackoverflow.com/questions/5599254/how-to-use-sphinxs-autodoc-to-document-a-classs-init-self-method mymodule members and ..autoclass MyClass members In conf.py setting the following only appends the __init__ self docstring.. is always documented you can use autodoc skip member in conf.py. Like this def skip app what name obj skip options if name __init__..
|