rst is a very easy to use ascii markup language. With some python script or the rst2html tool you can quickly generate html. For example, the following html (between the horizontal lines) was generated by the program below and uses the python docutils module on the ascii testtext python variable (but would normally be a file read in from somewhere):
The Title
My first sentence and some more.
- bullet one
- two
- sublists, just like bullet lists must be separated by blank lines
- second sublist
- three
and more paragraph text.
| Referees: | A.N. Other Boo Boo |
|---|
Some literal indented code:
program(1)
for i = 1, 10
nothing
done
And some more text
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| body row 1 | column 2 | column 3 |
| body row 2 | Cells may span columns. | |
| body row 3 | Cells may span rows. |
|
| body row 4 | ||
Run with:
rst2html ttt2 > k.html
For more details look at docutils quickref. and also check the latest
developments validator and latex
and the python code…
#
# some example rst text manipulated with python below...
#
testtext="""
The Title
=========
My first sentence and some more.
- bullet one
- two
- sublists, just like bullet lists must be separated by blank lines
- second sublist
- three
and more paragraph text.
:Referees:
A.N. Other
Boo Boo
Some literal indented code::
program(1)
for i = 1, 10
nothing
done
And some more text
+------------+------------+-----------+
| Header 1 | Header 2 | Header 3 |
+============+============+===========+
| body row 1 | column 2 | column 3 |
+------------+------------+-----------+
| body row 2 | Cells may span columns.|
+------------+------------+-----------+
| body row 3 | Cells may | - Cells |
+------------+ span rows. | - contain |
| body row 4 | | - blocks. |
+------------+------------+-----------+
Run with::
rst2html ttt2 > k.html
For more details look at docutils_ quickref. and also check the latest
developments validator_ and latex_
.. _Python: http://www.python.org/
.. _docutils: http://docutils.sourceforge.net/docs/user/rst/quickref.html#bullet-lists
.. _validator: http://docutils.sourceforge.net/sandbox/dugui/
.. _latex: http://docutils.sourceforge.net/sandbox/latex_directive/
"""
from docutils.core import publish_string, publish_parts
#
# quickly dump out the html using my own stylesheet
#
output = open("test-rst.html", 'w')
customcss = {'embed_stylesheet':False, 'stylesheet_path':'include/mystyle.css'}
output.write(publish_string(testtext, writer_name = 'html',
settings_overrides=customcss))
output.close()
#
# just dump the body part, no stylesheet at all
#
output = open("test-rst-body.html", 'w')
parts = publish_parts(testtext, writer_name = 'html',
settings_overrides=dict(embed_stylesheet=False,
stylesheet_path=None,))
output.write(parts['html_body'])
output.close()
Pulling out the body text is handy for generating html that you are inserting inside another document, like this blog entry for example.


