diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-07-07 11:46:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 11:46:09 +0200 |
commit | 7ee221453fb8e57210516564b9003ce95d92cacb (patch) | |
tree | f95972de0f0be75e62e3e4632e9121f85560a840 /rst.html.markdown | |
parent | 47928eee63fdf3efba08572c3c83b68948c57c59 (diff) | |
parent | 2df3917975e038bb2750227db19d1cc46bc3175e (diff) |
Merge pull request #3963 from ivirshup/patch-1
[RST/en] Fix compile errors from link and escaping
Diffstat (limited to 'rst.html.markdown')
-rw-r--r-- | rst.html.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rst.html.markdown b/rst.html.markdown index 2423622e..bdc73c7a 100644 --- a/rst.html.markdown +++ b/rst.html.markdown @@ -49,9 +49,11 @@ Subtitles with dashes You can put text in *italic* or in **bold**, you can "mark" text as code with double backquote ``print()``. +Special characters can be escaped using a backslash, e.g. \\ or \*. + Lists are similar to Markdown, but a little more involved. -Remember to line up list symbols (like - or *) with the left edge of the previous text block, and remember to use blank lines to separate new lists from parent lists: +Remember to line up list symbols (like - or \*) with the left edge of the previous text block, and remember to use blank lines to separate new lists from parent lists: - First item - Second item @@ -86,7 +88,7 @@ There are multiple ways to make links: - 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/ +.. _Github: https://github.com/ ``` |