emacs - How to open http://XYZ from my *own* tag in org-mode? -
when have ([abc] or [[abc]] or *abc ... ) in org-mode text, how can link command http://prosseek/wiki.php/abc?action=edit
?
i want edit own wiki page simple org-mode link. simple way manually input [[http://prosseek/wiki.php/abc?action=edit][abc]]
, want generate first http part automatically.
this code snippet you're looking for:
(setq org-link-abbrev-alist '( ("mine" . "http://prosseek/wiki.php/%s?action=edit") ))
this let [[mine:abc]] jump link.
Comments
Post a Comment