http://www.bobnewell.net/publish/35years/webclipper.html 上面的链接是相关方案。但是没看明白,代码应该放到哪?也不知道效果如何。
至于如何使用,它就是一个 Org Capture 模板,加到你的已有的模板中去。至于效果是什么,就是你在用 EWW 和 W3M 浏览网页时,用 Org 的 Capture 机制能保存当前的网页。
链接中给出的方案看起来很复杂,假如我有类似的需求的话(其实我没有,因为绝大多数网页在 EWW 里都没法看),我大概会这样实现:
(setq org-capture-templates
'(("w" "EWW Website" plain (file "/tmp/websites.org")
"* %a\n%T\n%(org-website-clipper)")))
(defun org-website-clipper ()
(with-current-buffer "*eww*"
(org-eww-copy-for-org-mode)
(car kill-ring)))
然后 EWW 访问一个网页,如 example.com ,按下 M-x org-capture w
会得到:
~ $ cat /tmp/websites.org
* [[http://example.com/][Example Domain]]
<2018-04-25 Wed 00:15>
Example Domain
This domain is established to be used for illustrative examples in documents. You may
use this domain in examples without prior coordination or asking for permission.
[[http://www.iana.org/domains/example][More information...]]
~ $
明白了,谢谢你了!
同,org毕竟不是翻译富文本的,网页还是太勉强了。Evernote做收藏夹挺好的