From a667cf999793aef05e509c85effcfd2453f9a66a Mon Sep 17 00:00:00 2001
From: taivlam <47955724+taivlam@users.noreply.github.com>
Date: Sun, 16 Jan 2022 02:57:16 +0000
Subject: [rst/en] Make formatting in comments consistent
Made formatting in comments consistent by adding 2 periods
---
rst.html.markdown | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'rst.html.markdown')
diff --git a/rst.html.markdown b/rst.html.markdown
index 56d54501..c177fdb4 100644
--- a/rst.html.markdown
+++ b/rst.html.markdown
@@ -33,7 +33,7 @@ $ pip install docutils
A simple example of the file syntax:
```
-.. Lines starting with two dots are special commands. But if no command can be found, the line is considered as a comment
+.. 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
@@ -80,12 +80,12 @@ France Paris
Japan Tokyo
=========== ========
-More complex tables can be done easily (merged columns and/or rows) but I suggest you to read the complete doc for this :)
+More complex tables can be done easily (merged columns and/or rows) but I suggest you to read the complete doc for this. :)
There are multiple ways to make links:
- By adding an underscore after a word : Github_ and by adding the target URL after the text (this way has the advantage of not inserting unnecessary URLs in the visible text).
-- By typing a full comprehensible URL : https://github.com/ (will be automatically converted to a link)
+- By typing a full comprehensible URL : https://github.com/ (will be automatically converted to a link).
- By making a more Markdown-like link: `Github `_ .
.. _Github: https://github.com/
--
cgit v1.2.3
From 9359cded7a125a3b0b205166e1b350c9f0414ed7 Mon Sep 17 00:00:00 2001
From: Abiria
Date: Fri, 8 Sep 2023 14:33:09 +0900
Subject: fix: replace 'markdown' to 'markup' (#4739)
---
rst.html.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'rst.html.markdown')
diff --git a/rst.html.markdown b/rst.html.markdown
index c177fdb4..8a730c7a 100644
--- a/rst.html.markdown
+++ b/rst.html.markdown
@@ -8,7 +8,7 @@ filename: restructuredtext.rst
RST, Restructured Text, is a file format created by the Python community to write documentation. It is part of [Docutils](https://docutils.sourceforge.io/rst.html).
-RST is a markdown language like HTML but is much more lightweight and easier to read.
+RST is a markup language like HTML but is much more lightweight and easier to read.
## Installation
--
cgit v1.2.3