diff --git a/html/post.html b/html/post.html index 4b461ae..864bf23 100644 --- a/html/post.html +++ b/html/post.html @@ -2,6 +2,7 @@

Link +Content Link
diff --git a/utilities.py b/utilities.py index d77afb9..6678e5a 100644 --- a/utilities.py +++ b/utilities.py @@ -34,6 +34,7 @@ def get_post_html(post): html = html.replace("", f"/r/{str(post.subreddit)}") html = html.replace("", f"/u/{post.author.name}" if post.author else "[deleted]") html = html.replace("", f"https://reddit.com{post.permalink}") + html = html.replace("", post.url) html = html.replace("", post.selftext_html or "") html = html.replace("", str(dt)) html = html.replace("", dt.strftime("%d %B, %Y"))