We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a30fc78 commit 9b31f13Copy full SHA for 9b31f13
docs/openvino_custom_sphinx_sitemap/openvino_custom_sphinx_sitemap/__init__.py
@@ -75,7 +75,10 @@ def create_sitemap(app, exception):
75
namespace, values = entry
76
namespace_element = ET.SubElement(url, namespace)
77
for tag_name, tag_value in values.items():
78
- ET.SubElement(namespace_element, tag_name).text = tag_value
+ if tag_name == 'ovcategory':
79
+ ET.SubElement(namespace_element, tag_name).text = 'No category'
80
+ elif tag_name == 'ovversion':
81
+ ET.SubElement(namespace_element, tag_name).text = tag_value
82
83
if len(app.locales) > 0:
84
for lang in app.locales:
docs/sphinx_setup/conf.py
@@ -73,6 +73,7 @@
73
ov_sitemap_meta = [
74
('coveo:metadata', {
'ovversion': version_name,
+ 'ovcategory': 'null'
})
]
0 commit comments