From: Bob Newell <bobnewell@bobnewell.net>
To: numbchild@gmail.com
Cc: Org Mode <emacs-orgmode@gnu.org>
Subject: Re: How to get parsed output of org-eww-copy-for-org-mode ?
Date: Wed, 25 Dec 2019 11:54:26 -1000 [thread overview]
Message-ID: <CADoYgq-vHiyLg=GD_OL3pwWrRMSAHxXZ2np4KLHis8vYVBL6XA@mail.gmail.com> (raw)
In-Reply-To: <87lfr259jq.fsf@gmail.com>
I don't seem to have any trouble with org-eww-copy-for-org-mode. I
capture with a capture template. The code below may be longer or more
than you want, but it works for me.
My capture template is this:
("w" "Website" plain
(function org-website-clipper)
"* %a\n%T\n" :immediate-finish t)
And it depends on the following code.
(require 'ol-eww)
(require 'ol-w3m)
;;; Change this to suit:
(defvar org-website-page-archive-file "~/organize/website/websites.org")
(defun org-website-clipper ()
"When capturing a website page, go to the right place in capture file,
but do sneaky things. Because it's a w3m or eww page, we go
ahead and insert the fixed-up page content, as I don't see a
good way to do that from an org-capture template alone. Requires
Emacs 25+ and the 2017-02-12 or later patched version of org-eww.el."
(interactive)
;;; Address the plague of trailing whitespace in some web buffers.
(let ((buffer-read-only nil))
(delete-trailing-whitespace))
;;; Check for acceptable major mode (w3m or eww) and set up a couple of
;;; browser specific values. Error if unknown mode.
(cond
((eq major-mode 'w3m-mode)
(org-w3m-copy-for-org-mode))
((eq major-mode 'eww-mode)
(org-eww-copy-for-org-mode))
(t
(error "Not valid -- must be in w3m or eww mode")))
;;; Check if we have a full path to the archive file.
;;; Create any missing directories.
(unless (file-exists-p org-website-page-archive-file)
(let ((dir (file-name-directory org-website-page-archive-file)))
(unless (file-exists-p dir)
(make-directory dir))))
;; Open the archive file and yank in the content.
;; Headers are fixed up later by org-capture.
(find-file org-website-page-archive-file)
(goto-char (point-max))
;; Leave a blank line for org-capture to fill in
;; with a timestamp, URL, etc.
(insert "\n\n")
;; Insert the web content but keep our place.
(save-excursion (yank))
;; Don't keep the page info on the kill ring.
;; Also fix the yank pointer.
(setq kill-ring (cdr kill-ring))
(setq kill-ring-yank-pointer kill-ring)
;; Final repositioning.
(forward-line -1)
)
next prev parent reply other threads:[~2019-12-25 21:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-24 9:59 How to get parsed output of org-eww-copy-for-org-mode ? stardiviner
2019-12-24 10:26 ` Marco Wahl
2019-12-25 8:08 ` Adam Porter
2019-12-25 11:00 ` stardiviner
2019-12-25 11:33 ` [SOLVED] " stardiviner
2019-12-25 21:54 ` Bob Newell [this message]
2019-12-27 1:35 ` stardiviner
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='CADoYgq-vHiyLg=GD_OL3pwWrRMSAHxXZ2np4KLHis8vYVBL6XA@mail.gmail.com' \
--to=bobnewell@bobnewell.net \
--cc=emacs-orgmode@gnu.org \
--cc=numbchild@gmail.com \
/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).