a general purpose document processing system written in Python.

learn more… | top users | synonyms

2
votes
1answer
19 views

parsing rST to HTML on the fly using Docutils

I want to parse .rst files to .html files on the fly to display as a webpage. I'm using pyramid, and I haven't found any quick help on how to use docutils inside python code and make it write to a ...
7
votes
3answers
200 views

Resolve Substitutions in RestructuredText

I want to take the following restructured text snippet that contains a substitution definition: text = """ |python| .. |python| image:: python.jpg """ And resolve the definitions so the ...
0
votes
1answer
42 views

Turn fields in reStructuredText into html

So I've got a reStructuredText document which includes fields: :param foo: set this to do magic and I want to turn the rST into html, with special treatment of param (and other) fields. Turning ...
0
votes
1answer
42 views

add node to rst doctree and save to file

I'd like to insert a custom node into a doctree and save these changes to file. I'm reading the following RST file... Hello World! ############ :date: 2010-10-03 10:20 :author: James Bond This is ...
0
votes
1answer
26 views

How to make verbatim text inside a link in Restructured Text? [duplicate]

How can I make verbatim text inside a link in Restructured Text? Here's what I'm trying to achieve: example I tried the following ```example`` <http://example.com>`__ ` ``example`` ...
1
vote
1answer
27 views

Image with hyperlink in reStructuredText

I am trying to add an image with an external link. |facebook| |tw| .. |facebook| image:: http://www.summerbounce.ca/wp-content/uploads/2012/11/facebook-logo-small.png .. |tw| image:: ...
0
votes
0answers
33 views

Linkable element in docutils' doctree

I created a Sphinx extension that dynamically creates a few elements, basically a definition list. Thus I create a tree of definition_list, definition_list_item, term, definition and paragraph ...
5
votes
1answer
181 views

Sphinx Documentation, numbered figure references

I'm trying to get numbered figures to work on my Sphinx documentation project using latexpdf output. I installed the Sphinx numfig.py extension found here https://bitbucket.org/arjones6/sphinx-numfig ...
2
votes
1answer
89 views

Autodoc single module attribute in Sphinx

Say I have documented a variable in a Python module, like so: some_random_name = 'whatever' """The random whatever variable""" Can I include autodocs for that single variable in my .rst file, ...
2
votes
2answers
135 views

:synopsis: not working in Sphinx automodule

I am using Sphinx, really like it, but it won't pick up the module synopsis. No error or anything, just plain ... nothing. This is the module I am trying to autodocument: # vim: set ...
1
vote
1answer
106 views

Math directives in Django ReStructuredText

I am using Django template restructuredtext filter to display an rst file in my template. I have docutils installed, and have added django.contrib.markup to settings.py. Displaying rst text works ...
1
vote
1answer
74 views

Is there a reST Writer?

Is there a reST Writer for docutil.nodes trees? I couldn't find one but maybe I'm missing something obvious. Or is it trivial to write one yourself? I want to implement reST-to-reST transformations.
6
votes
2answers
158 views

Specifying anchor names in reST

I'm creating HTML from reST using the rst2html tool which comes with docutils. It seems that the code already assigns id attributes to the individual sections, which can be used as fragment ...
0
votes
1answer
33 views

How to know the version number of docutils

I found myself searching for the version of docutils the server was running. To my surprise, it wasn't as straight forward as typing whatever command with flag "--version". I finally got it through ...
0
votes
1answer
91 views

Create table of content inside table

I want to be able to generate table of content inside a table. E.g. it should have borders and look like this: .. tabularcolumns:: |p{10.5cm}|p{1.1cm}|p{1.4cm}|p{1.1cm}| ...
2
votes
1answer
137 views

How to add rel attribute to docutils sphinx reference in HTML output?

I have a simple extension for the Sphinx documentation utility (my version in use isSphinx-1.1.3-py2.6). Very much like this excellent example by Doug Hellmann. How can I add a rel='bar' attribute to ...
3
votes
0answers
151 views

Overriding the default field name limit in sphinx/docutils

I am using sphinx for generating html documentation for a project. I make extensive use of field lists. When generating html, each label/value pair is rendered as a single table row with two cells if ...
3
votes
1answer
56 views

Specify order to run testsetup blocks in doctest suite

In a big ReStructured Text file with many Python doctests, I have a testsetup block I want to run before each doctest, and some testsetup blocks I want to run before only some of the doctests. I know ...
0
votes
0answers
53 views

Using sphinx node visitors in an extension

I am trying to write a small sphinx extension to create a hyperlink to external documentation, PySide's to be precise. I have got it working so that it creates the hyperlink, but I can't figure out ...
1
vote
1answer
89 views

how to change command for pycharm to convert rst to html

I install docutils and pygment for syntax highlighting on rst files. By using command: rst2html.py file.rst file.html I can get good result. When I use pycharm to compose rst file, it has ...
2
votes
1answer
159 views

Python dictionary “copy value”

I was looking at the docutil source code (which is in python), when I saw this (redacted) : def __init__(self, **attributes): for att, value in attributes.items(): att = att.lower() ...
1
vote
2answers
796 views

How do you install Docutils from the Terminal so that Django admindocs will work?

Docutils is a great package. If you are using Django the admindocs package needs docutils. Instructions are available for installing with a web browser, but what if you are remote and logging in with ...
0
votes
1answer
152 views

Align image both horizontally and vertically

Using docutils, it doesn't seem possible to align an image both horizontally and vertically in reStructuredText. Vertical alignment is only accepted for substitutions, while horizontal alignment only ...
2
votes
1answer
207 views

Extract field list from reStructuredText

Say I have the following reST input: Some text ... :foo: bar Some text ... What I would like to end up with is a dict like this: {"foo": "bar"} I tried to use this: tree = ...
1
vote
3answers
153 views

Adding a external PDF as appendix with ReStructuredText

I'm writing a major report, and have two PDF files I'd like to include as appendices. The report is written using ReStructuredText, and rst2pdf will be used to convert it. Does docutils or rst2pdf ...
0
votes
1answer
140 views

Global include in restructured text

I'm using reStructuredText for my blog/website and I want to add a global include file. I have access to and am happy to change the settings file I'm using to generate the html output, I just can't ...
2
votes
1answer
286 views

Creating minimal LaTeX syntax from reStructuredText with docutils

I'm making a Python script that takes several text files with reStructuredText syntax and creates one single LaTeX file with Docutils. Everything works great except Docutils creates a lot of extra ...
0
votes
1answer
368 views

docutils/reStructuredText template features

How could I customize placeholders in my .rst file with actual values? For example, I have example.rst file with following content: Header ------------------------------------ ${custom_text} I ...
3
votes
2answers
180 views

reStructuredText not respecting subheadings

Here's a simple reST snippet: deleting this line causes all subheadings to be rendered as h1 tags I should be an h1 ================= I should be an h2 ----------------- foo I should ...
0
votes
0answers
365 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 ...
1
vote
1answer
259 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
134 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. .. ...
3
votes
1answer
563 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 ...
2
votes
1answer
62 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
1answer
193 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, ...
0
votes
1answer
283 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 ...
1
vote
3answers
267 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 ...
0
votes
1answer
112 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 ...
2
votes
1answer
595 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', ...
30
votes
1answer
2k 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 ...
2
votes
2answers
335 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 ...
15
votes
4answers
1k 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
0
votes
2answers
123 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 ...
6
votes
1answer
359 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 ...
1
vote
1answer
163 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 ...
1
vote
1answer
74 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 ...
4
votes
1answer
288 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 ...
3
votes
4answers
363 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 ...
11
votes
8answers
936 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.