elfeed
elfeed copied to clipboard
Feature request: Add org-save-link in elfeed entry
When I read some great articles, I really want to save them into my org files.
And since we already have a database, so can we add this feature into elfeed? Or is there already a package can do this?
No package but you can use code from here and modify it to your needs: http://heikkil.github.io/blog/2015/05/09/notes-from-elfeed-entries/
@heikkil Thanks for your tips! It works for me.
Based on your code, I made some improvement to provide a org-store-link-function for elfeed entry.
(defun private/org-elfeed-entry-store-link ()
(when elfeed-show-entry
(let* ((link (elfeed-entry-link elfeed-show-entry))
(title (elfeed-entry-title elfeed-show-entry)))
(org-store-link-props
:link link
:description title)
)))
(add-hook 'org-store-link-functions 'private/org-elfeed-entry-store-link)
See also #34
Done, close please.