emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: stardiviner
Subject: How to get parsed output of org-eww-copy-for-org-mode ?
Date: Tue, 24 Dec 2019 17:59:05 +0800
User-agent: mu4e 1.3.2; emacs 27.0.50

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)
  (org-yank))
#+end_src

But in upper code snippet, the ~current-kill~ or ~org-yank~ (or ~yank~) can't 
get the
output. I try to use *advice-add*, but I don't know which advice combinator can
archive the purpose that get the parsed output of ~org-eww-copy-for-org-mode~ 
and
save it somewhere like variable or register. So that I can yank in capture
buffer again.

-- 
[ stardiviner ]
       I try to make every word tell the meaning what I want to express.

       Blog: https://stardiviner.github.io/
       IRC(freenode): stardiviner, Matrix: stardiviner
       GPG: F09F650D7D674819892591401B5DF1C95AE89AC3
      



reply via email to

[Prev in Thread] Current Thread [Next in Thread]