Skip to content

Commit

Permalink
elfeed-org.el: added support for file:// and gopher:// links. (#75)
Browse files Browse the repository at this point in the history
Elfeed has the ability to retrieve urls from gopher and the local file
system too, however elfeed-org would just ignore those links.
  • Loading branch information
readmemyrights authored Nov 18, 2022
1 parent f6479ba commit 3242ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elfeed-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ all. Which in my opinion makes the process more traceable."
(-filter
(lambda (entry)
(and
(string-match "\\(http\\|entry-title\\)" (car entry))
(string-match "\\(http\\|gopher\\|file\\|entry-title\\)" (car entry))
(not (member (intern rmh-elfeed-org-ignore-tag) entry))))
list))

Expand Down

0 comments on commit 3242ec0

Please sign in to comment.