Tagged Questions

docutils is a python library that extracts docstrings from python files.

learn more… | top users | synonyms

9
votes
7answers
526 views

Is there an intelligent editor for ReST files?

I'm just learning Sphinx, and I need to edit ReST files. Is there an intelligent editor for it? Like, an editor that gives me code coloration, easy indentation, code completion (hopefully), etc.
5
votes
1answer
265 views

Python: Parsing reStructuredText into HTML

I'm making a framework in which I let developers describe their package using reStructuredText. I want to parse that reStructuredText into HTML so I can show it in a GUI. I'm familiar with the ...
5
votes
2answers
320 views

ReST strikethrough

Is it possible to strike text through in Restructured Text? Something that for example renders as a <strike> tag when converted to HTML, like: ReSTructuredText
4
votes
1answer
200 views

Sphinx domain for Clojure

I'm used to working with Sphinx for C++ and Python projects. I've just started a project in Clojure and I'd like to re-use my Sphinx/reStructuredText skills to document my Clojure code. Since ...
2
votes
1answer
30 views

How to i18n method comment for displays django-admindoc

I am writing a method to my class and I like internationalize my projects. Now I'm developing a really multilingual system. I want to translate documentation. About how to translate new line after the ...
2
votes
4answers
234 views

How to add Google Analytics to reStructuredText?

I am using reStructured text to create some easy websites. So I have got a lot of *.rst files in which I want to add the Google Analytics code. But as far as I know it is not possible to add ...
1
vote
0answers
56 views

csv-table reference as table number rather than table name

I am making a document with many tables. But, the only way I know how to refer to them in the text is with a :ref:'my_table' and that puts the entire table name, "The long title of my table" in my ...
1
vote
1answer
67 views

Parsing .rst files with Sphinx-specific directives programmatically

I would like to be able to parse sphinx based rst in Python for further processing and checking. Something like: import sphinx p = sphinx.parse("/path/to/file.rst") do_something_with(p) It seems ...
1
vote
1answer
49 views

reStructuredText Custom Directive for formatted tabular output

I'm trying to migrate our API docs and their proprietary documentation generator schema to reStructuredText. The piece that gives the hardest time is, we have a tabular representation of API details, ...
1
vote
1answer
73 views

Django docutils not working

I'm trying to enable docutils for django on windows 7. I've enabled the links in urls.y and settings.py and downloaded and installed the latest snapshot of docutils. However every time I try to access ...
1
vote
1answer
158 views

Using docutils.core.publish_string instead of publish_cmdline, `settings_overrides` argument carrying HTML-Specific Options takes no effect!

Below is my code from docutils.core import publish_string from docutils.writers.html4css1 import Writer as HisWriter args = { 'stylesheet' : '/home/wonder/lab/css/note.css', ...
1
vote
2answers
125 views

In the HTML output generated by rst2html, section at all levels are all with class “section”, Can I config it?

Sorry for my poor English first, please give me some patient. Thank you! Thus, if I want apply my own css to the html output, I just can not use different styles for top-level section and ...
1
vote
1answer
167 views

How Do I Suppress or Disable Warnings in reSTructuredText?

I'm working on a CMS in Python that uses reStructuredText (via docutils) to format content. Alot of my content is imported from other sources and usually comes in the form of unformatted text ...
0
votes
0answers
41 views

Create a latex pdf table from Python without pdflatex

i want to generate a pdf output created from latex inside a python script. Since I'ma working under windows with python xy and that i cannot install latex, i would like to know if there is a way to ...
0
votes
0answers
27 views

Extracting blocks of text from ReST documents by :ref:?

I have some reStructuredText documentation. I would like to use snippets from it in online help. It seems like one approach would be to 'snip' out pieces of markup by reference, e.g. .. ...
0
votes
1answer
98 views

Sphinx/DocUtils to create custom documentation

I'm trying to use Sphinx to create some html divs for each of my methods. The problem is, I'd like to completely customize the code Sphinx generates. I believe doing this would require creating a ...
0
votes
1answer
50 views

How do I format code neatly in HTML/CSS ? I especially want to use the numerical circle callouts, with Python Docutils if I can

see: http://diveintopython.net/native_data_types/lists.html#d0e5623 I have a website with code examples on it, generated through docutils, and the CSS is always not quite right. I would like to know ...
0
votes
2answers
68 views

Is it possible to reconcile github and docutils buildhtml?

Github will parse a reStructuredText file if its extension is .rst. The docutils buildhtml.py will only parse files with the extension .txt, and I can't see an option to change that. This is massively ...
0
votes
1answer
55 views

reStructuredText for SQL?

I am trying to use DocUtils and reStructuredText to comment SQL code. I can get this to work when I include the markup inside multi-line comments. I then use --Some text:: to introduce each block of ...
0
votes
1answer
50 views

How can I add something to the heading part of HTML document with docutils

This document (http://docutils.sourceforge.net/docs/ref/rst/directives.html) explains about using .. raw:: to pass through HTML code in docutils, and the HTML code is in the body part of generated ...