如何在组织模式链接中避开复杂的标题



我有一堆日志页面,如下所示:

** <2013-12-03 火 20:53> [[http://www.geek.com/science/nasa-funds-fuelless-laser-thruster-could-be-readying-for-test-launch-1573468/][NASA funds fuelless laser thruster, could be readying for test launch | Science! | Geek.com]] :euler:technical:space:

:PROPERTIES:
:ID:       c064d0ae
:END:
The biggest problem for PLT is its limited range...

我想从其他组织模式文档(如TODO列表)链接到这些文档。通常,我所做的是单击链接,选择Org->Hyperlinks->Store link to here(GLOBAL),然后使用选项卡完成C-l

然而,生成的链接不起作用,并且具有不同的格式:

[[file:~/orgs/webjournals.org::*%20%5B%5Bhttp:/www.geek.com/science/nasa-funds-fuelless-laser-thruster-could-be-readying-for-test-launch-1573468/%5D%5BNASA%20funds%20fuelless%20laser%20thruster,%20could%20be%20readying%20for%20test%20launch%20|%20Science!%20|%20Geek.com%5D%5D][<2013-12-03 火 20:53> {{http://www.geek.com/science/nasa-funds-fuelless-laser-thruster-could-be-readying-for-test-launch-1573468/}{NASA funds fuelless laser thruster, could be readying for test launch | Science! | Geek.com}}]]

我该如何解决这个问题?我尝试设置简化的文本搜索链接,如[[file:~/orgs/webjournals.org::*http:/www.geek.com/]],但没有发现任何成功。

您可以用C-w剪切坏字符串,然后用以下命令:

(defun yank-and-unhex ()
  (interactive)
  (insert (url-unhex-string (current-kill 0)))) 

最新更新