Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在组织模式文本中有 ([abc] 或 [[abc]] 或 *abc ... ) 时,如何将其链接到命令 http://prosseek/wiki.php/abc?action=edit?
http://prosseek/wiki.php/abc?action=edit
我想从简单的 org-mode 链接编辑我自己的 wiki 页面。简单的方法是手动输入[[http://prosseek/wiki.php/abc?action=edit][abc]],但我想自动生成第一个 http 部分。
[[http://prosseek/wiki.php/abc?action=edit][abc]]
这是您正在寻找的代码片段:
(setq org-link-abbrev-alist '( (“我的”。“http://prosseek/wiki.php/%s?action=edit”) ))
这将使 [[mine:abc]] 跳转到您的链接。