markdown里面可以这样插连接
[addr1]: https://emacs-china.org "addr1 info"
[addr2]: https://google.com "addr2 info"
[地址1][addr1]
[地址2][addr2]
我google找了下 没找到org-mode中有类似的功能 可以将地址存在变量中 然后再使用
markdown里面可以这样插连接
[addr1]: https://emacs-china.org "addr1 info"
[addr2]: https://google.com "addr2 info"
[地址1][addr1]
[地址2][addr2]
我google找了下 没找到org-mode中有类似的功能 可以将地址存在变量中 然后再使用
感谢,利用这一特性,就能实现通过elisp动态生成的链接,从而获得一些更灵活的功能。
为什么新添加的
#+LINK: google https://google.com
[[google]]
org-html-export-as-html 生成的html是
<p>
<i>google</i>
</p>
只有把文件关了重新打开才能生成正确的链接
<p>
<a href="https://google.com">https://google.com</a>
</p>
设置在 Org 文档中的所有变量只会在打开文档的时候被读取生效。
哦哦 谢谢 我还找到了这个
C-c C-c activates any changes to the in-buffer settings. Closing and reopening the Org file in Emacs also activates the changes.