abo-abo / org-download

Drag and drop images to Emacs org-mode
1.07k stars 78 forks source link

Option to remove #+Downloaded tag #179

Open joshcho opened 2 years ago

joshcho commented 2 years ago

It would be very nice if in customize-variable we can remove the #+Downloaded tag that gets added by default. Thanks.

hsingko commented 2 years ago

I'm not familiar with elisp, and I came across this problem too. As this code which mentioned above hasn't merged to the base yet, I found a solution that doesn't need to chage the source code. Hope it will help others who search for the same issue.

(defun dummy-org-download-annotate-function (link)
  "")

;; setq in doom emacs
(setq org-download-annotate-function
      #'dummy-org-download-annotate-function)
AtomicNess123 commented 2 years ago

Is this merged already?