diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-12-08 11:13:49 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-12-08 11:13:49 +0100 |
commit | 589868c98d23ebce4157c3d654e2b5766b414dab (patch) | |
tree | fe86224571ab205e299aee8259f94086f61d91b0 /lisp/mastodon-media.el | |
parent | 65821b2f24c40fbd5cb703757913af54b7e47243 (diff) |
add image-description text property
Diffstat (limited to 'lisp/mastodon-media.el')
-rw-r--r-- | lisp/mastodon-media.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-media.el b/lisp/mastodon-media.el index 561327c..894a21a 100644 --- a/lisp/mastodon-media.el +++ b/lisp/mastodon-media.el @@ -321,7 +321,8 @@ CAPTION is the image caption if provided." (concat (mastodon-tl--propertize-img-str-or-url "[img]" media-url full-remote-url type help-echo - (create-image mastodon-media--generic-broken-image-data nil t)) + (create-image mastodon-media--generic-broken-image-data nil t) + nil caption) " "))) (provide 'mastodon-media) |