Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-26 Thread stardiviner
This is very interesting, thanks. I will reference your code. Bob Newell writes: > 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:

Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-25 Thread Bob Newell
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"

[SOLVED] Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-25 Thread stardiviner
Adam Porter writes: > You may find the package org-web-tools useful. Thanks, Adam I found function ~org-web-tools--html-to-org-with-pandoc~ which can be used in my case. -- [ stardiviner ] I try to make every word tell the meaning what I want to express. Blog:

Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-25 Thread stardiviner
Adam Porter writes: > You may find the package org-web-tools useful. Interesting, =org-web-tools= is useful, I will dive into source code to find what is usable in my purpose. -- [ stardiviner ] I try to make every word tell the meaning what I want to express. Blog:

Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-25 Thread Adam Porter
You may find the package org-web-tools useful.

Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-24 Thread Marco Wahl
stardiviner writes: > I try to get the parsed HTML content into Org format content for org capture > template. > > #+begin_src emacs-lisp > (require 'org-eww) > (with-temp-buffer > (insert html) > (org-eww-copy-for-org-mode) > ;; FIXME does not yank converted content, inserted original

How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-24 Thread stardiviner
I try to get the parsed HTML content into Org format content for org capture template. #+begin_src emacs-lisp (require 'org-eww) (with-temp-buffer (insert html) (org-eww-copy-for-org-mode) ;; FIXME does not yank converted content, inserted original HTML instead. (current-kill 0)