diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-25 12:03:03 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-25 12:13:30 +0100 |
commit | 83231a8e0dbce439e0d98a158291c7be9fb4525b (patch) | |
tree | 17fe6ceee279fc349ea3bf348ed711c74ae4c20f /lisp/mastodon-profile.el | |
parent | 143232e53d05bd42560d5ee9265bcb74245a29e2 (diff) |
tweak joined date newlines printing + test
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index fa9642e..3ba00b9 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -617,15 +617,18 @@ NO-REBLOGS means do not display boosts in statuses." " [locked]") "") "\n ------------\n" - (mastodon-tl--render-text note account) + ;; profile note: ;; account here to enable tab-stops in profile note + (mastodon-tl--render-text note account) + ;; meta fields: (if fields (concat "\n" (mastodon-tl--set-face (mastodon-profile--fields-insert fields) - 'success) - "\n") + 'success)) "") + "\n" + ;; Joined date: (propertize (mastodon-profile--format-joined-date-string joined) 'face 'success) |