| Commit message (Collapse) | Author | Age | Lines |
|
|
| |
Made formatting in comments consistent by adding 2 periods
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There were two issues here:
* The non-inline link was used incorrectly, and should have a colon after the specifier.
* A compile error was generated from having a non-escaped `*`.
These can be verified by running `rst2html`:
```sh
$ rst2html.py ./restructuredtext.rst tmp.html
./restructuredtext.rst:24: (WARNING/2) Inline emphasis start-string without end-string.
./restructuredtext.rst:59: (WARNING/2) malformed hyperlink target.
```
After adding the colon, and adding the escape
```sh
$ rst2html.py ./restructuredtext.rst tmp.html
$
```
I've also added a sentence on escaping.
|
|
|
| |
Separated sentences for readability / line length.
|
|
|
|
|
|
|
|
|
| |
Revising the section on creating lists with RST, as the syntax for list/sublist creation is not 1-1 with Markdown.
The current example is actually incorrect—any/all sublists must be separated from their parent list by blank lines (above and below). These sublists must also be properly indented in relation to the text of the above parent list.
References:
[1]: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#bullet-lists
[2]: http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html
|
|
|
| |
Clarify marking text as code
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
contributors
|
| |
|
|
* [en/RST] Add RST introduction
* Fix @ in username
|