Sphinx is a tool that makes it easy to create intelligent and beautiful documentation. Sphinx is especially suitable for Python documentation, but it is a general-purpose tool that can be used to document anything.

learn more… | top users | synonyms

1
vote
0answers
21 views

Generate test plan from test method names and docstrings

I have a set of tests written using nose and I want to automatically create something like a test plan readable by non-programmers using sphinx or perhaps some other tool. class TestUser(): ...
1
vote
0answers
12 views

Nesting Sphinx extension directives with reST

I'm trying to figure out if there's a way to nest Sphinx extension directives. I have a few custom node types that are working great, but I'd like a little more flexibility in the HTML I'm generating. ...
0
votes
1answer
34 views

How to insert a blank line in restructured text?

I'm drafting a document using Sphinx 1.1.3. When I insert two tables one after another, those tables show up too close in HTML, so I want to insert a blank line between them. How do I do that?
0
votes
1answer
8 views

separate sphinx build and source directories for version control

I have a working directory containing my project and it is in a version control system. I'd like to create a doc directory inside my project that contains only restructured text files for sphinx. ...
0
votes
0answers
33 views

Sphinx Import Submodule Error

I'm using sphinx to try and document an API for a simulator I made, but it's having a problem importing a submodule of pygame. I orignally had a problem importing pygame but then realized it wasn't on ...
1
vote
1answer
22 views

Sphinx: Linking a Lexer with a style sheet using pygments

Good evening, Lets say I am using the built java lexer in pygments to highlight the syntax of a code block in a sphinx document. How do I change the style sheet that the java lexer is associated ...
0
votes
0answers
23 views

Sphinx: Using a custom style sheet with a custom lexer [duplicate]

Good afternoon, I have created a custom lexer and a custom style sheet in sphinx using pygments. Now I want to use the said style sheet with said lexer, does anyone know how to do this? It does not ...
1
vote
0answers
41 views

Avoid docstrings from parent, in Sphinx

I use Sphinx for autodocs, but I find it annoying how it by default appends the parent class docstring to my docstring. The result is that for each and every documented test class inheriting from ...
1
vote
1answer
39 views

How do I avoid “SEVERE: Duplicate ID” warnings for my autodoc'd modules in Sphinx?

I'm using rST/Sphinx to document my Python, however when building it's throwing warnings such as ...Code/doc/code.rst:3: SEVERE: Duplicate ID: "module-toast". My Python source files are documented ...
0
votes
1answer
28 views

Custom Syntax Highlighting with Sphinx

Good afternoon, I am interested in creating a custom syntax highlighter that can be used in a Sphinx environment. Is this possible? If so how would I go about doing it? Any help is greatly ...
0
votes
1answer
50 views

Mathjax expression in sphinx python not rendering correclty

I've been trying to figure out what's wrong with this expression in my docstring. I'm using the sphinx.ext.mathjax extension in python sphinx v1.2b. The docstring: .. math:: w_k^* = \min_{w_k} ...
6
votes
1answer
61 views

How to create floating figures in reStructuredText / Sphinx?

I want to have a figure with text wrapped around it. This is what I'm saying: Installation of Optional Accessories ==================================== .. warning:: Never plug in or unplug a Hand ...
2
votes
1answer
28 views

Sphinx documentation and autodoc-skip-member

I'm building my sphinx doc for a django project the following way: sphinx-apidoc app -o docs/source/app --force Now it includes all of the South migrations which I don't want to have in my ...
1
vote
0answers
13 views

Sphinx documentation: continuing numbering from heading to list

I'm looking to get list numbers to continue on from heading numbers. I've tried the :numbered: directive in .. toctree:, but that only produces numbers for the headings. For example: Section ===== ...
1
vote
1answer
27 views

python-sphinx: how to show linux command code snippets

Using sphinx, I know you can show a piece of python code snippet or ruby code snippet by having something like: .. code-block:: ruby. ${your ruby code goes here} How can I show a code snippet of ...
-3
votes
0answers
27 views

Why i can't use the search function in restructured text?

Please download the file form: http://s.yunio.com/faEmEk Unzip it and cd into ./build Open the file index.html in chrome or firefox. There is a file Chapter 1: Introduction to Django in it. Why the ...
1
vote
1answer
35 views

Sphinx's .. include:: directive and “duplicate label” warnings

I'm trying to use Sphinx's .. include:: directive to include docs from one file in another file, to avoid duplicating the source text of the docs. The section I'm including is in configuration.rst ...
0
votes
1answer
72 views

how to use sphinx document generator in windows?

I want to make a site using sphinx document generator. But my machine is windows. I cant find sufficient resources for windows. If anyone could suggest me a way to implement sphinx in windows would be ...
0
votes
0answers
53 views

Generating documentation with Sphinx

I'm looking for some help to generate documentation for Sphinx. Upon my first build there was the option to automatically include docstrings, so I added all the docstrings to my code and then ...
0
votes
1answer
23 views

The TOC tree issue

I have just created my documentation using Sphinx and this is my problem: Initially in the Toc tree directive is empty and then I add "tutorial" below and it looks like this: .. toctree:: ...
6
votes
1answer
103 views

Making Sphinx produce untypogrified code blocks in PDF output

Code blocks look ugly (check the quotes) in PDF output: I use version 1.1.3 of Sphinx, and used the following command to produce the doc: $ make latexpdf Also, copying the snippet from the PDF ...
0
votes
0answers
27 views

Using self to create a sitemap with toctree in sphinx seem broken?

I'm updating a FAQ for a fairly big project and I would like to add an index of the questions at the top of the page, so it becomes easier for users to find what they're looking for. The Sphinx ...
2
votes
2answers
97 views

How do I include the homepage in the Sphinx TOC?

Let’s say I’ve got a Sphinx project with the following sources: index.rst installation.rst templating/ index.rst module.rst fieldtype.rst index.rst (the homepage) has the following TOC ...
1
vote
1answer
36 views

including dynamic content in documentation generated by python-sphinx

I am using sphinx to generate documentation for my project, and building the documentation as part of the product's install process. I would like to dynamically include the hostname in the text and/or ...
1
vote
2answers
39 views

.. plot directive in restructured text

I was looking at this site. Specifically, the source. It appears to create a plot (complete with source code!) is extremely easy: .. plot: somefile.py But, when I try it, sphinx yells at me. ...
1
vote
2answers
58 views

How to document an exception using Sphinx

I can't seem to figure out how to document exceptions using Sphinx. I've tried the following: def some_funct(): """ :raises: ExceptionType: Some multi-line exception description. ...
0
votes
0answers
56 views

How to document Django urls with Sphinx

I'm generating a new django project, with several apps. The main goal for this project is to create a REST API. Right now, I've sphinx working, creating documentation of all my project with ...
5
votes
2answers
53 views

Include specific special-methods in sphinx

I have a bunch of classes which use "special-methods": class Foo(object): "Foo docstring" attr1 = "Attribute!" #: first attribute attr2 = "Another Attribute!" #: second attribute def ...
2
votes
1answer
142 views
+150

Sphinx document module properties

I have a module that should have a @property, I solved this by setting a class as the module. I got the idea from this answer: Lazy module variables--can it be done? I wanted this to be repeatable ...
0
votes
1answer
64 views

Sphinx: how to exclude imports in automodule?

I have a Raspberry Pi project written in Python that uses RPi.GPIO module. All the work on the code is done on a Windows box where RPi.GPIO will not install and every time I try to run autodoc it ...
0
votes
1answer
34 views

Any way to generate multiple different pdfs from single sphinx configuration

I have a nice sphinx documentation concerning a projects, and I would like to extend it to generate documents such as specs, and other. I would like to have spec-for-foo.rst that generates ...
3
votes
1answer
93 views

Sphinx graphviz inheritance diagram increase node size

I'm trying to generate an inheritance diagram in Sphinx using the sphinx.ext.inheritance_diagram extension. This uses Graphviz to draw the diagrams. It's not a huge diagram and it seems that there is ...
1
vote
0answers
24 views

Sphinx documentation of django tests

I'm using Sphinx for my django project documentation. I want to document all my tests. How can I tell index.rst to bring all the autodoc strings from all the files that start with "test..." from my ...
0
votes
1answer
33 views

how can I add auth to my django project's sphinx docs?

I'm using sphinx-apidoc to auto-generate documentation for my Django project which is using django-social-auth + oauth2 for auth. I want to be able to use that same auth to access the documentation. ...
3
votes
1answer
218 views

Any ways build docs by sphinx with both python2.x and python3.x ecosystems?

I have a project that supports both Python 2.7 and Python 3.x using a single code base. In it, I used optional futures: Twisted (Python 2.x only) concurrent.futures (Python 3.2 only) If ...
0
votes
1answer
44 views

Get docstring from script by Sphinx

I have classical Python package structure: bin/ my_script docs/ my_package/ ... and I create docs with Sphinx. I would like to take docstring from my_script automatically. Is there any way ...
0
votes
0answers
74 views

Sphinx documentation for a Django project trying to access the database

I am trying to build Sphinx documentation for an existing codebase, I use apidoc to generate the rst's. We are hosting the docs on an independent server which only has our codebase and required Python ...
2
votes
2answers
131 views

Tool to generate CHM and PDF documentation from Markdown on Windows

Is there a tool that generates both PDF and CHM documentation from Markdown (or similar, such as RST) on Windows. We are currently using Sphinx, but have been unable to get the PDF generation working ...
0
votes
1answer
39 views

use custom html writer in sphinx

How can I use a different HTMLTranslator than the one that ships with Sphinx in sphinx.writers.html? Specifically, I want to modify the method depart_desc_signature. I can't modify Sphinx itself ...
1
vote
1answer
63 views

Sphinx automodule to show module name?

I've used .. automodule:: mypath.mymodule in my documentation. I wanted the plain module docstring with no other information for members. The module docstring appears, however no indication of the ...
0
votes
2answers
59 views

Documenting class instance as a function

When using sphinx autodoc extension to create documentation how can I document a class instance (not the class itself) as if it was a function? Class has a __call__ method defined.
2
votes
0answers
81 views

sphinx change table of contents html

I'm working on theming my documentation, and I'm trying to get sphinx to add a class to the <ul> elements of the Table of Contents. Unfortunately, it looks like the HTML is generated just the ...
0
votes
0answers
40 views

How to add a link to the full source code with sphinx-doc?

I wrote a documentation with python-sphinx and I use the sphinx.ext.viewcode extension in order to link part of the documentation to the corresponding source code. How can I add a link to that page ...
1
vote
0answers
23 views

Is it possible to generate a single .pot file from Sphinx documentation?

I'm undergoing the task of i18n / l10n the documentation of a largish project. The documentation is done with Sphinx, that has off-the shelf basic support for i18n. My problem is similar to that of ...
1
vote
0answers
20 views

Javadoc formatter as pretty as readthedocs/sphinx? [duplicate]

When I think of Java automatic documentation, I think, well, ugly. Not that it's not useful, but I've been spoiled by readthedocs / sphinx. Is there a package that makes your javadocs pretty? ...
1
vote
2answers
281 views

Syntax error in configuration file - future feature unicode_literals is not defined (Python,Django,Sphinx)

I'm trying out Django. I was going to read it's documentation. It wasn't there, I had to build it. Read the Readme in Django-1.5/doc folder, downloaded the Sphinx documentation Python module. ...
7
votes
1answer
160 views

Python command line program: generate man page from existing documentation and include in the distribution

Following an (hopefully) common practice, I have a Python package that includes several modules and an executable script in a separate scripts directory, as can be seen here. The documentation for ...
0
votes
0answers
18 views

Index is not generated in Sphinx

Not index is generated when I run make html or make latexpdf. I have enabled everything related to index in conf.py. Could it be that I am using breathe instead of Python autodocs? Shouldn't Sphinx ...
2
votes
1answer
54 views

How to handle two dashes in ReST

I'm using Sphinx to document a command line utility written in Python. I want to be able to document a command line option, such as --region like this: **--region** <region_name> in ReST ...
2
votes
1answer
238 views

WARNING: document isn't included in any toctree for included file

I'm getting the warning: WARNING: document isn't included in any toctree for files that exist in the document because they've been explicitly included. So I have the index file: .. toctree:: ...

1 2 3 4 5 11