From b35dcf2e2b36049689f42581247e9c1f263fda5f Mon Sep 17 00:00:00 2001 From: mez Date: Mon, 23 Jun 2025 20:22:35 +0100 Subject: [PATCH] Add revue category, italicise post formatting disclaimer --- export.el | 2 +- identify.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/export.el b/export.el index 45983e9..2bfb71b 100644 --- a/export.el +++ b/export.el @@ -93,7 +93,7 @@ holding export options." (concat "\n\n

" thetitle "

\n")) "
\n" (unless (string-match "tumblr" thecategory) - (concat "

If the formatting of this post seems odd or incomplete, try viewing the original on my site.

")) + (concat "

If the formatting of this post seems odd or incomplete, try viewing the original on my site.

")) contents "
\n" (if havecomments diff --git a/identify.py b/identify.py index 342fb97..f748c45 100644 --- a/identify.py +++ b/identify.py @@ -152,6 +152,8 @@ for post in posts: poststring += "🎵 " elif post["media"] == "sight": poststring += "🔭 " + elif post["media"] == "event": + poststring += "📅 " except: pass poststring += post["real"] + "\n"