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 2f7e160 commit 7527542Copy full SHA for 7527542
assets/js/projects.js
@@ -138,9 +138,14 @@ $(document).ready(function(){
138
project_repo = project_repo.toLowerCase();
139
140
if (docs_repo === project_repo) {
141
+ let docs_url = readthedocs[docs]['urls']['documentation']
142
+ if (docs_url.includes("readthedocs.io")) {
143
+ continue
144
+ }
145
+
146
let docs_link = document.createElement("a")
147
docs_link.className = "nav-link text-warning ms-3"
- docs_link.href = readthedocs[docs]['urls']['documentation']
148
+ docs_link.href = docs_url
149
docs_link.target = "_blank"
150
repo_data_row.appendChild(docs_link)
151
0 commit comments