From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: Bob Newell <bobnewell@bobnewell.net>
Cc: "Emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: How do you store web pages for reference?
Date: Fri, 17 Mar 2017 09:05:03 +0100 [thread overview]
Message-ID: <m2o9x0jplc.fsf@charm-ecran.irisa.fr> (raw)
In-Reply-To: 8760j9rqk9.fsf@bobnewell.net
[-- Attachment #1: Type: text/plain, Size: 1176 bytes --]
On 2017-03-16 09:04, Bob Newell <bobnewell@bobnewell.net> writes:
> Scott Otterson <scotto@sharpleaf.org> writes:
>
>> I use Evernote, which has handy annotation, tagging, and search
>
> I use this also, but I wanted something working within Emacs similar to
> the Evernote web-clipper. Org-board is very powerful but requires an
> intermediate step of creating a headline with a URL property.
I have this automated with org-capture and a hook:
#+BEGIN_SRC emacs-lisp
(setq org-board-capture-file "my-org-board.org")
(setq org-capture-templates
`(...
("c" "capture through org protocol" entry
(file+headline ,org-board-capture-file "Unsorted")
"* %?%:description\n:PROPERTIES:\n:URL: %:link\n:END:\n\n Added %U")
...))
(defun do-org-board-dl-hook ()
(when (equal (buffer-name)
(concat "CAPTURE-" org-board-capture-file))
(org-board-archive)))
(add-hook 'org-capture-before-finalize-hook 'do-org-board-dl-hook)
#+END_SRC
Best,
Alan
--
OpenPGP Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂, Mauna Loa Obs. 2017-02: 406.42, 2016-02: 404.04
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 454 bytes --]
next prev parent reply other threads:[~2017-03-17 8:05 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-16 8:48 How do you store web pages for reference? Alan Schmitt
2017-01-16 9:22 ` Michael Welle
2017-01-16 9:57 ` Alan Schmitt
2017-01-16 10:03 ` Michael Welle
2017-01-16 15:58 ` William Denton
2017-01-16 18:09 ` Alan Schmitt
2017-01-16 10:38 ` Charles A. Roelli
2017-01-16 13:06 ` Alan Schmitt
2017-01-16 14:43 ` Karl Voit
2017-01-16 15:41 ` Alan Schmitt
2017-01-16 16:35 ` Karl Voit
2017-01-16 16:52 ` Robert Horn
2017-01-16 17:40 ` Scott Otterson
2017-03-16 19:04 ` Bob Newell
2017-03-17 8:05 ` Alan Schmitt [this message]
2017-03-23 0:01 ` Adam Porter
2017-03-13 17:43 ` Peter Salazar
2017-03-14 12:17 ` Adonay Felipe Nogueira
2017-03-15 7:08 ` Alan Schmitt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2o9x0jplc.fsf@charm-ecran.irisa.fr \
--to=alan.schmitt@polytechnique.org \
--cc=bobnewell@bobnewell.net \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).