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 42c723a commit 4583883Copy full SHA for 4583883
python-sitemap.py
@@ -14,6 +14,9 @@ def generate_sitemap():
14
permalink = post['permalink']
15
# Use permalink as-is if it has a domain, otherwise prepend base_url
16
url = permalink if permalink.startswith(('http://', 'https://')) else f"{base_url}/{permalink}"
17
+ # Skip dash.plotly.com URLs
18
+ if 'dash.plotly.com' in url:
19
+ continue
20
urls.append(url)
21
except:
22
pass
0 commit comments