Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ def check_keyword(username, version):
|
|
53 |
return output_md.strip()
|
54 |
if username in repo:
|
55 |
currenthitcount += 1
|
56 |
-
output_md += f"_{repo}_\n\n"
|
57 |
if currenthitcount > maxhitcount:
|
58 |
output_md += f"**Found maximum hits**, Count: **{currenthitcount}** in The Stack:\n\n"
|
59 |
return output_md.strip()
|
|
|
53 |
return output_md.strip()
|
54 |
if username in repo:
|
55 |
currenthitcount += 1
|
56 |
+
output_md += f"_<a href=https://github.com/{repo} target=_blank>{repo}</a>_\n\n"
|
57 |
if currenthitcount > maxhitcount:
|
58 |
output_md += f"**Found maximum hits**, Count: **{currenthitcount}** in The Stack:\n\n"
|
59 |
return output_md.strip()
|