learnxinyminutes-docs/rst.html.markdown

109 lines
2.7 KiB
Markdown
Raw Normal View History

---
2017-03-02 14:22:30 +03:00
language: restructured text (RST)
contributors:
- ["DamienVGN", "https://github.com/martin-damien"]
- ["Andre Polykanine", "https://github.com/Oire"]
filename: restructuredtext.rst
---
2017-01-07 00:02:45 +03:00
RST is a file format formely created by Python community to write documentation (and so, is part of Docutils).
2017-01-07 00:02:45 +03:00
RST files are simple text files with lightweight syntax (comparing to HTML).
## Installation
To use Restructured Text, you will have to install [Python](http://www.python.org) and the `docutils` package.
`docutils` can be installed using the commandline:
```bash
$ easy_install docutils
```
2017-01-07 00:02:45 +03:00
If your system has `pip`, you can use it too:
```bash
$ pip install docutils
```
2017-01-07 00:02:45 +03:00
## File syntax
A simple example of the file syntax:
2017-07-04 23:23:42 +03:00
```
2017-01-07 00:02:45 +03:00
.. Lines starting with two dots are special commands. But if no command can be found, the line is considered as a comment
=========================================================
Main titles are written using equals signs over and under
=========================================================
2017-01-07 00:02:45 +03:00
Note that there must be as many equals signs as title characters.
Title are underlined with equals signs too
==========================================
Subtitles with dashes
---------------------
2017-01-07 00:02:45 +03:00
And sub-subtitles with tildes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can put text in *italic* or in **bold**, you can "mark" text as code with double backquote ``: ``print()``.
2017-01-07 00:02:45 +03:00
Lists are as simple as in Markdown:
- First item
- Second item
- Sub item
or
* First item
* Second item
* Sub item
Tables are really easy to write:
=========== ========
Country Capital
=========== ========
France Paris
Japan Tokyo
=========== ========
2017-01-07 00:02:45 +03:00
More complex tabless can be done easily (merged columns and/or rows) but I suggest you to read the complete doc for this :)
2017-01-07 00:02:45 +03:00
There are multiple ways to make links:
2017-01-07 00:02:45 +03:00
- By adding an underscore after a word : Github_ and by adding the target URL after the text (this way has the advantage to not insert unnecessary URLs inside readable text).
- By typing a full comprehensible URL : https://github.com/ (will be automatically converted to a link)
- By making a more Markdown-like link: `Github <https://github.com/>`_ .
.. _Github https://github.com/
```
2017-01-07 00:02:45 +03:00
## How to Use It
2017-01-07 00:02:45 +03:00
RST comes with docutils where you have `rst2html`, for example:
```bash
$ rst2html myfile.rst output.html
```
*Note : On some systems the command could be rst2html.py*
2017-01-07 00:02:45 +03:00
But there are more complex applications that use the RST format:
- [Pelican](http://blog.getpelican.com/), a static site generator
- [Sphinx](http://sphinx-doc.org/), a documentation generator
- and many others
## Readings
- [Official quick reference](http://docutils.sourceforge.net/docs/user/rst/quickref.html)