Update content

This commit is contained in:
OpenTelekomCloud Proposal Bot 2022-10-20 13:02:03 +00:00
parent dcb26a0eb5
commit 4b817383bb
2 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,9 @@ sys.path.insert(0, os.path.abspath('../'))
sys.path.insert(0, os.path.abspath('./'))
# -- General configuration ----------------------------------------------------
# https://docutils.sourceforge.io/docs/user/smartquotes.html - it does not
# what it is expected
smartquotes = False
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.

View File

@ -156,7 +156,7 @@ Customized settings can be used in the following scenarios:
+-----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Character | Description |
+===========+=============================================================================================================================================================+
| . | Match any single character except **\\n**. To match any character including **\\n**, use **(.|\n)**. |
| . | Match any single character except **``\n``**. To match any character including **``\n``**, use **(.|\n)**. |
+-----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| \* | Match the subexpression that it follows for zero or multiple times. For example, **zo\*** can match **z** and **zoo**. |
+-----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+