We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e8564 commit e99c587Copy full SHA for e99c587
sphinxext/opengraph/descriptionparser.py
@@ -74,7 +74,7 @@ def dispatch_visit(self, node: nodes.Element) -> None:
74
text = node.astext().replace("\r", "").replace("\n", " ").strip()
75
76
# Ensure string contains HTML-safe characters
77
- text = html.escape(text, True)
+ text = html.escape(text, quote=True)
78
79
# Remove double spaces
80
while text.find(" ") != -1:
0 commit comments