Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to render .rst files in a markdown or html format? [closed]

In many django projects, in the docs directory I can see *.rst files:

Is there a standard, simple, or common way of rendering and displaying these, instead of viewing their contents as plain text?

Is it possible to generate HTML from the .rst files?

like image 995
Eric Avatar asked Apr 05 '10 22:04

Eric


People also ask

What is .RST file extension?

reStructuredText (RST, ReST, or reST) is a file format for textual data used primarily in the Python programming language community for technical documentation.


1 Answers

.rst files are ReStructuredText format. They look like text files, but can be rendered into HTML with the Python docutils package.

like image 129
Mike DeSimone Avatar answered Sep 28 '22 01:09

Mike DeSimone