From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: elfeed and orgmode integaration? Date: Fri, 04 Dec 2015 09:22:54 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33444) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4ldr-0002V7-NN for emacs-orgmode@gnu.org; Fri, 04 Dec 2015 03:23:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4ldn-0005qP-NW for emacs-orgmode@gnu.org; Fri, 04 Dec 2015 03:22:59 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:39231) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4ldn-0005qJ-HT for emacs-orgmode@gnu.org; Fri, 04 Dec 2015 03:22:55 -0500 In-Reply-To: (Xebar Saram's message of "Fri, 4 Dec 2015 09:06:30 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Xebar Saram Cc: org mode --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, On 2015-12-04 08:06, Xebar Saram writes: > I was wondering if anyone uses elfeed and org and how people integrate it= into > orgmode. > > It would be great if anyone can share code dealing with capturing from el= feed > into org, linking and any other uses people are coming up with I use elfeed, and I have minimal integration: a way to store the linked page. #+begin_src emacs-lisp (defun as/elfeed-entry-as-html-link () "Store an http link to an elfeed entry." (when (equal major-mode 'elfeed-show-mode) (let ((description (elfeed-entry-title elfeed-show-entry)) (link (elfeed-entry-link elfeed-show-entry))) (org-store-link-props :type "http" :link link :description description)))) (add-hook 'org-store-link-functions 'as/elfeed-entry-as-html-link) #+end_src Someone has proposed a better linking mechanism here https://github.com/skeeto/elfeed/issues/34#issuecomment-158824561 where you can link to an elfeed search or entry. Best, Alan =2D-=20 OpenPGP Key ID : 040D0A3B4ED2E5C7 Athmospheric CO=E2=82=82 (Updated November 29, 2015, Mauna Loa Obs.): 400.3= 7 ppm --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAEBCgAGBQJWYU1eAAoJEAQNCjtO0uXHYXQH/RKbJAwYL3mvKYi9xRC/kM6C A1JDmkWAkut2sE4X9RhnQ6nYzMBIbmj4QtPDAa7rT/NyeW8H1wfkIpinhKAWvimy kVHxV0reXyp2s0cock/kKlLTkWInZNS31f7Gyep6Y8H4J8lePocQuL7C8J+fi6Z8 kOOU/4TczZd19Cj8PWQE4SXPT0ZhagZa442cC2HG4/tbQuhEiYW/x9o4ZjseZ9sD bpwKhwokXycZ/l2CwOZurWiSNM2/djuFi4GLkZLzz8nRYOBQdkwJhVdgMhtoDFGn EeruPcRCtNKNqUFcPnoYDUCTWqSOOrovVGhfHOzKeSLMwkqTwUXinN9NrfeF8Bs= =u1Ux -----END PGP SIGNATURE----- --=-=-=--