summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2023-03-01 00:48:15 (GMT)
committerGitHub <noreply@github.com>2023-03-01 00:48:15 (GMT)
commit7d1d66341838d7d1963c9ee7ffca2950d3a751fd (patch)
tree56f3a3ee2f1a7a597f61c5af4d3ee88decbb36e1
parent938e36f824c5f834d6b77d47942ad81edd5491d0 (diff)
downloadcpython-7d1d66341838d7d1963c9ee7ffca2950d3a751fd.zip
cpython-7d1d66341838d7d1963c9ee7ffca2950d3a751fd.tar.gz
cpython-7d1d66341838d7d1963c9ee7ffca2950d3a751fd.tar.bz2
Doc: Fix minor error in ePub (GH-100614)
Fix issue reported https://mail.python.org/archives/list/docs@python.org/message/KE7OIAO53P4XRC4ZOWPDHA63ZQJCHEC3/
-rw-r--r--Doc/conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/conf.py b/Doc/conf.py
index b3da8fa..29fb63c 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -268,7 +268,7 @@ ogp_site_url = 'https://docs.python.org/3/'
ogp_site_name = 'Python documentation'
ogp_image = '_static/og-image.png'
ogp_custom_meta_tags = [
- '<meta property="og:image:width" content="200">',
- '<meta property="og:image:height" content="200">',
- '<meta name="theme-color" content="#3776ab">',
+ '<meta property="og:image:width" content="200" />',
+ '<meta property="og:image:height" content="200" />',
+ '<meta name="theme-color" content="#3776ab" />',
]