This commit is contained in:
2026-05-23 22:15:55 +02:00
parent 067ca89f48
commit ec1342d146
3 changed files with 25 additions and 6 deletions
+1 -1
View File
@@ -789,7 +789,7 @@ class ComicInfoBuilder:
if favs is not None: rows.append(f"<tr><td {_TD}>Favorites</td><td>{favs:,}</td></tr>")
if rows:
link = f'<a href="{url}">MyAnimeList</a>' if url else "MyAnimeList"
link = f'<a href="{url}" target="_blank">MyAnimeList</a>' if url else "MyAnimeList"
parts.append(f"<p>{link} stats as of {as_of}:</p><table>{''.join(rows)}</table>")
# 2. Description — Markdown → HTML (middle) -----------------------