Changes to ma_umn from docs/doc-exports#371 (update conf.py

disable smartquotes

Reviewed-by: gtema <artem.goncharov@gmail.com>
Co-authored-by: proposalbot <proposalbot@otc-service.com>
Co-committed-by: proposalbot <proposalbot@otc-service.com>
This commit is contained in:
proposalbot 2022-10-24 08:13:55 +00:00 committed by zuul
parent 4d6cef848a
commit da6b51152e
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**. |
+-----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------+