Next: , Previous: , Up: Hyperlinks   [Contents][Index]


4.4 External Links

Org supports links to files, websites, Usenet and email messages, BBDB database entries and links to both IRC conversations and their logs. External links are URL-like locators. They start with a short identifying string followed by a colon. There can be no space after the colon.

Here is the full set of built-in link types:

file

File links. File name may be remote, absolute, or relative.

Additionally, you can specify a line number, or a text search. In Org files, you may link to a headline name, a custom ID, or a code reference instead.

As a special case, “file” prefix may be omitted if the file name is complete, e.g., it starts with ‘./’, or ‘/’.

attachment

Same as file links but for files and folders attached to the current node (see Attachments). Attachment links are intended to behave exactly as file links but for files relative to the attachment directory.

bbdb

Link to a BBDB record, with possible regexp completion.

docview

Link to a document opened with DocView mode. You may specify a page number.

doi

Link to an electronic resource, through its handle.

elisp

Execute an Elisp command upon activation.

gnus’, ‘rmail’, ‘mhe

Link to messages or folders from a given Emacs’ MUA.

help

Display documentation of a symbol in ‘*Help*’ buffer.

http’, ‘https

Web links.

id

Link to a specific headline by its ID property, in an Org file.

info

Link to an Info manual, or to a specific node.

irc

Link to an IRC channel.

mailto

Link to message composition.

news

Usenet links.

shell

Execute a shell command upon activation.

The following table illustrates the link types above, along with their options:

Link TypeExample
httphttp://staff.science.uva.nl/c.dominik/
httpshttps://orgmode.org/
doidoi:10.1000/182
filefile:/home/dominik/images/jupiter.jpg
/home/dominik/images/jupiter.jpg’ (same as above)
file:papers/last.pdf
./papers/last.pdf’ (same as above)
file:/ssh:me@some.where:papers/last.pdf’ (remote)
/ssh:me@some.where:papers/last.pdf’ (same as above)
file:sometextfile::NNN’ (jump to line number)
file:projects.org
file:projects.org::some words’ (text search)27
file:projects.org::*task title’ (headline search)
file:projects.org::#custom-id’ (headline search)
attachmentattachment:projects.org
attachment:projects.org::some words’ (text search)
docviewdocview:papers/last.pdf::NNN
idid:B7423F4D-2E8A-471B-8810-C40F074717E9
newsnews:comp.emacs
mailtomailto:adent@galaxy.net
mhemhe:folder’ (folder link)
mhe:folder#id’ (message link)
rmailrmail:folder’ (folder link)
rmail:folder#id’ (message link)
gnusgnus:group’ (group link)
gnus:group#id’ (article link)
bbdbbbdb:R.*Stallman’ (record with regexp)
ircirc:/irc.com/#emacs/bob
helphelp:org-store-link
infoinfo:org#External links
shellshell:ls *.org
elispelisp:(find-file "Elisp.org")’ (Elisp form to evaluate)
elisp:org-agenda’ (interactive Elisp command)

On top of these built-in link types, additional ones are available through the ‘contrib/’ directory (see Installation). For example, these links to VM or Wanderlust messages are available when you load the corresponding libraries from the ‘contrib/’ directory:

vm:folderVM folder link
vm:folder#idVM message link
vm://myself@some.where.org/folder#idVM on remote machine
vm-imap:account:folderVM IMAP folder link
vm-imap:account:folder#idVM IMAP message link
wl:folderWanderlust folder link
wl:folder#idWanderlust message link

For information on customizing Org to add new link types, see Adding Hyperlink Types.

A link should be enclosed in double brackets and may contain descriptive text to be displayed instead of the URL (see Link Format), for example:

[[http://www.gnu.org/software/emacs/][GNU Emacs]]

If the description is a file name or URL that points to an image, HTML export (see HTML Export) inlines the image as a clickable button. If there is no description at all and the link points to an image, that image is inlined into the exported HTML file.

Org also recognizes external links amid normal text and activates them as links. If spaces must be part of the link (for example in ‘bbdb:R.*Stallman’), or if you need to remove ambiguities about the end of the link, enclose the link in square or angular brackets.


Footnotes

(27)

The actual behavior of the search depends on the value of the variable org-link-search-must-match-exact-headline. If its value is nil, then a fuzzy text search is done. If it is t, then only the exact headline is matched, ignoring spaces and statistic cookies. If the value is query-to-create, then an exact headline is searched; if it is not found, then the user is queried to create it.


Next: , Previous: , Up: Hyperlinks   [Contents][Index]