diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-25 17:31:51 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-25 17:31:51 +0100 |
commit | c182a0d4ad883cc7a1f85d09eb44366a1fd31611 (patch) | |
tree | 1c4a2a9171e65dce70b15de110264039732720a3 /lisp/mastodon-profile.el | |
parent | c8a9683b61a207bf38fd76e337bf22a814b6cbf2 (diff) | |
parent | eca8401b6ed04ed0f787efcd8517b022c55f9ed7 (diff) |
Merge branch 'develop' into remove-from-followers
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 8cea4d7..d6b2b94 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) |