Tagged Questions

reStructuredText is a lightweight markup language intended to be highly readable in source format.

learn more… | top users | synonyms (1)

73
votes
11answers
13k views

Markdown versus ReStructuredText [closed]

What are people's thoughts on the pros and cons of Markdown versus ReStructuredText. Both seem like very usable and well-developed markup languages -- when might one want to use one over the other?
42
votes
6answers
7k views

Compare and contrast the lightweight markup languages (Textile, Markdown, and reStructuredText) [closed]

Please identify the most popular lightweight markup languages and compare their strengths and weaknesses. These languages should be general-purpose markup for technical prose, such as for ...
36
votes
5answers
11k views

reStructuredText tool support

I am a great fan of reStructuredText, however the tools that support it are scattered all over the Internet. The official tool list is incomplete and/or outdated, and can be updated only via commit ...
35
votes
13answers
22k views

Java: Easiest way to merge a release into one jar-file

Is there a tool or script which easily merges a bunch of jar-files into one .jar? A bonus would be to easily set the main-file manifest and make it executable. The concrete case is a java ...
20
votes
5answers
1k views

How do you get Python documentation in Texinfo Info format?

Since Python 2.6, it seems the documentation is in the new reStructuredText format, and it doesn't seem very easy to build a Texinfo Info file out of the box anymore. I'm an Emacs addict and prefer ...
16
votes
5answers
4k views

Doxygen alternative for C++

While doxygen seems to be good at indexing a large C++ project, I have some major gripes with it. The generated output is ugly and poorly organized. Just finding a function in doxygen websites is ...
14
votes
10answers
2k views

Math in reStructuredText with LaTeX

I would like to use a lightweight markup language to take notes in my college classes. My editor of choice is gedit, and I found reStructuredText Tools for Gedit, which will run the reStructuredText ...
9
votes
7answers
504 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.
9
votes
8answers
6k views

Is there a wysiwyg editor for restructured text?

Is there a wysiwyg editor for the web, like tinymce or wmd, which can produce restructured text? I'm looking for something which can be integrated with django. I would like to use rst instead of ...
8
votes
2answers
1k views

Is there a reStructuredText markup editor for eclipse

Is there a WiKiText editor plugin for reStructuredText under eclipse? When I edit a .textile file, I get various intelligent editing features (such as line folding) and a preview panel. I find that ...
7
votes
2answers
386 views

How does Python's website generate its online documentation?

Created using Sphinx 0.6.5. I know Python's documentation uses reStructuredText, but it has different sections like http://docs.python.org/whatsnew/2.6.html and ...
7
votes
4answers
953 views

How can I change from docbook to restructuredText?

I have a 30-ish page manual in docbook. However, working with docbook is so painful that I don't really update it. I want to switch to restructedText instead. I can't find any direct translator (the ...
6
votes
3answers
1k views

How to convert a S5 presentation into PDF?

I am using reStructuredText & rst2s5 to create S5 slide presentations. It is great but I also want to have the presentation in PDF. How can I convert S5 to PDF? S5 are HTML based... one of S5 ...
6
votes
2answers
728 views

How to convert reStructuredText to plain text

I plan to use reStructuredText to write documentation with the main purpose of generating some nice HTML pages. For this I use the docutils rst2html.py tool. However, I may also need to present the ...
5
votes
2answers
275 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
5
votes
1answer
121 views

RestructuredText - Hyperlinks without leading and trailing spaces

Is it possible to create hyperlinks without leading and trailing spaces? The following doesn't work: re`Structured`_Text .. _`Structured`: ...
5
votes
2answers
184 views

Macro or equivalent in Restructured Text?

I have the <form> like this all the times. .. raw:: html <form action="txmt://open/?url=file:///Users/smcho/smcho/works/prgtask/ni/gtest_boost_options/readme.txt"> <button ...
5
votes
3answers
1k views

single py file for convert rst to html

I write blog by using rst, and I manually convert it into html, and post it. For now, I want to create a simple blog system by using GAE, I know docutils can convert rst to html, but docutils is ...
5
votes
2answers
416 views

Sphinx - generate automatic references to Trac tickets and changesets

Is Sphinx, is there way to automatically link text like #112 or r1023 to the corresponding tickets/changesets in Trac? For eg: #112 -> http://mytracsite/tickets/112 r1023 -> ...
5
votes
3answers
491 views

Substitutions inside links in reST / Sphinx

I am using Sphinx to document a webservice that will be deployed in different servers. The documentation is full of URL examples for the user to click and they should just work. My problem is that the ...
4
votes
3answers
150 views

Embedding HTML in restructured text on PyPi package pages

In Sphinx I know that you can do it: .. raw:: html <div style="margin-top:10px;"> <iframe width="560" height="315" src="http://www.youtube.com/embed/_EjisXtMy_Y" frameborder="0" ...
4
votes
1answer
88 views

Getting started about writing documentation for django application

I would like to write a documentation for one of my django based project. I found that django people uses reStructureText and Spinx for this purpose. I have following queries. How do I get started ...
4
votes
1answer
235 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 ...
4
votes
1answer
364 views

Sphinx for writing “parallel text”

Problem: I am trying to write "parallel text" using reStructuredText. By "parallel text", I mean something like annotated works of fiction, where the text is in two columns. The left column contains ...
4
votes
2answers
187 views

Can I add “Smartypants” to restructuredText?

I use restructuredText, and I like what smartypants does for Markdown. Is there a way to enable the same thing for restructuredText?
4
votes
5answers
2k views

Technical documentation with deeply nested enumerated lists

I'm stuck in a software documentation culture I can't change, and software documentation is expected to have deeply nested sections that look like this: 2.1.5.3.2.1 Some section This paragraph has ...
3
votes
1answer
62 views

How to embed HTML in restructured text file?

I'm using reStructuredText and I'd like to add HTML encoding an interactive flash-type animation through the <embed> tag. From my .rst document, how can I specify the position of this arbitrary ...
3
votes
3answers
165 views

Python code to generate part of sphinx documentation, is it possible?

I am using sphinx to generate the documentation for a project of mines. In such project, I describe a list of available commands in a yaml file which, once loaded, results in a dictionary in the ...
3
votes
2answers
136 views

How to force whitespace in code block in reStructuredText

In RST, we use some whitespaces in front of a block to say this is a code block. Because Python also uses whitespace to indent a code block, I would like my RST code block to preserve those ...
3
votes
1answer
122 views

How can I add a custom footer to Sphinx documentation? (reStructuredText)

If I have some documentation, like for example Galleria's documentation, how can I set it up so that when I run the make html command it will add a custom footer on to each page? I saw that I could ...
3
votes
1answer
129 views

How to have same text in two links with restructured text?

Here is what I would like to do: 1. `link <http://www.google.com>`__ 2. `link <http://www.yahoo.com>`__ To obtain: <ol> <li><a ...
3
votes
1answer
241 views

restructuredText, docstring and python interactive shell

I am using reStructuredText to document my code, so as to get nice offline HTML pages by means of epydoc. Results are brilliant. The only drawback is that when I use the Python interactive shell, the ...
3
votes
3answers
1k views

How to use color in text with ReStructured Text (rst2html.py) or how to insert HTML tags without blank lines?

How can I use color with ReStructured Text? For example, **hello** translates into <strong>hello</strong>. How can I make ReStructure(rst2html.py) translate something into <font ...
3
votes
1answer
101 views

Sphinx: Putting a code segment at the first line of an unordered list item

I'm using Sphinx to manage my project's documentation. I have an unordered list, and I want the first line of every item to be a code segment. (Not inline, a paragraph.) How can I do that?
3
votes
1answer
171 views

Source Code in Bullet Lists with reStructuredText

I am trying to include source code in bullet lists with reStructuredText; like this: - List item 1 :: code sample... code sample... - List item 2 :: code sample... code sample... ...
3
votes
1answer
469 views

Referencing figures with numbers in Sphinx and reStructuredText

When writing RST that will be processed with Sphinx, I can't get Sphinx LaTeX output to use figure numbers when referencing figures. For instance, this code: The lemmings are attacking, as can be ...
3
votes
2answers
643 views

In Sphinx, is there a way to document parameters along with declaring them?

I prefer to document each parameter (as needed) on the same line where I declare the parameter in order to apply D.R.Y. If I have code like this: def foo( flab_nickers, # a series of under ...
2
votes
1answer
70 views

reST to Latex to PDF

I was able to generate the latex output from reST using make latex command of Sphinx/Python. It generated the required latex files under latex directory. I am not sure on what I need to do for ...
2
votes
0answers
142 views

Retaining inline code inside references in Sphinx

In Sphinx, if I have the following heading declaration: .. _somestuff: ``this is code``, this is not! ============================== It renders, like this:     this is code, ...
2
votes
2answers
216 views

How to right-align columns content in reStructuredText simple tables?

I'm editing the documentation for a project of mine using Sphinx, which in turn uses reStructuredText as markup language. I have a simple table (as opposed to grid table) in which the rightmost ...
2
votes
2answers
277 views

ANTLR grammar for reStructuredText (rule priorities)

First question stream Hello everyone, This could be a follow-up on this question: Antlr rule priorities I'm trying to write an ANTLR grammar for the reStructuredText markup language. The main ...
2
votes
1answer
164 views

How to create a nested list in reStructuredText?

I am trying to create a properly nested list using the following code (following Sphinx and docutils docs): 1. X a. U b. V c. W 2. Y 3. Z I expect this to result in two OLs but I get the ...
2
votes
1answer
342 views

Convert latex to rst/sphinx

I am writing documentation of a project using rst and sphinx. But earlier, I already wrote a part of it in latex and now want to convert it to rst to add it to the documentation. Converison of rst to ...
2
votes
1answer
171 views

Vertical headers in RestructuredText tables

In RestructuredText, you can render a header row in a table like this (taken from the documentation : +------------------------+------------+----------+----------+ | Header row, column 1 | Header 2 ...
2
votes
2answers
403 views

How to generate reST/sphinx source from python?

I'd like to generate documentation via reST, but don't want to write the reST source manually, but let a python script do that and then produce other formats (HTML, PDF) with sphinx. Imagine I have ...
2
votes
2answers
498 views

Use ReStructuredText for pretty source code listing

As is asked and answered in this post, one can use SyntaxHighlighter for pretty code listing. With ReStructuredText, I can use raw directive as follows. .. raw:: html <script ...
2
votes
1answer
221 views

Restructured Text - adding title attributes to links

I am trying to use a jquery lightbox implementation on my website that is generated from Restructured Text. The lightbox takes the title of the link around the images as the caption of the image in ...
2
votes
1answer
423 views

Working example of floating image in reStructured Text

I'm looking for the best way to have an image with text appearing beside it in reStructured Text. I have found several sites purporting to show how it's done but none show an actual functioning ...
2
votes
1answer
171 views

Insert relative link in reStructuredText

I am documenting a library that has a Python component and a JavaScript component. The overall user documentation, and the Python API documentation are in reStructuredText, processed with Sphinx. The ...
2
votes
4answers
224 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 2 3