Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -90,7 +90,7 @@ def generar_html_con_colores(serp_results, urls_comunes, min_length):
|
|
90 |
if i < len(serp_results[keyword]):
|
91 |
entry = serp_results[keyword][i]
|
92 |
url = entry["URL"]
|
93 |
-
display_url = f"<a href='{url}' target='_blank' style='color:{url_color_map.get(url, '#
|
94 |
html_table += f"<td>{display_url}</td>"
|
95 |
else:
|
96 |
html_table += "<td></td>"
|
|
|
90 |
if i < len(serp_results[keyword]):
|
91 |
entry = serp_results[keyword][i]
|
92 |
url = entry["URL"]
|
93 |
+
display_url = f"<a href='{url}' target='_blank' style='color:{url_color_map.get(url, '#c3c3c3')}'>{url}</a>"
|
94 |
html_table += f"<td>{display_url}</td>"
|
95 |
else:
|
96 |
html_table += "<td></td>"
|