summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-10-17 23:31:45 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-10-17 23:31:45 +0200
commit52d4ca4b29b4e404f797130d56fec4793aed83d2 (patch)
treeffff36536948729350c53d814f4efb6c040a157a
parent7ac8883394bc2979dee731c54ef65c0a9c135d0b (diff)
parent90d283f1894d473449a7f23fd09e3a264ed9c15d (diff)
downloadorg-mode-52d4ca4b29b4e404f797130d56fec4793aed83d2.tar.gz
Merge branch 'maint'
-rw-r--r--doc/org.texi29
-rw-r--r--lisp/org.el4
2 files changed, 22 insertions, 11 deletions
diff --git a/doc/org.texi b/doc/org.texi
index 728e73f..c54f261 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -7382,6 +7382,7 @@ gnus | %:group, @r{for messages also all email fiel
eww, w3, w3m | %:url
info | %:file %:node
calendar | %:date
+org-protocol | %:link %:description %:annotation
@end smallexample
@noindent
@@ -7623,22 +7624,15 @@ javascript:location.href='org-protocol://store-link?url='+
@cindex capture protocol
@cindex protocol, capture
-@cindex capture, %:url placeholder
-@cindex %:url template expansion in capture
-@cindex capture, %:title placeholder
-@cindex %:title template expansion in capture
Activating @code{capture} handler pops up a @samp{Capture} buffer and fills
-the capture template associated to the @samp{X} key with them. The template
-refers to the data through @code{%:url} and @code{%:title} placeholders.
-Moreover, any selected text in the browser is appended to the body of the
-entry.
+the capture template associated to the @samp{X} key with them.
@example
emacsclient org-protocol://capture?template=X?url=URL?title=TITLE?body=BODY
@end example
-To use this feature, add a bookmark with an arbitrary name, e.g.
-@samp{Org: capture} and enter this as @samp{Location}:
+To use this feature, add a bookmark with an arbitrary name, e.g. @samp{Org:
+capture} and enter this as @samp{Location}:
@example
javascript:location.href='org-protocol://template=x'+
@@ -7652,6 +7646,21 @@ The result depends on the capture template used, which is set in the bookmark
itself, as in the example above, or in
@code{org-protocol-default-template-key}.
+@cindex capture, %:link placeholder
+@cindex %:link template expansion in capture
+@cindex capture, %:description placeholder
+@cindex %:description template expansion in capture
+@cindex capture, %:annotation placeholder
+@cindex %:annotation template expansion in capture
+The following template placeholders are available:
+
+@example
+%:link The URL
+%:description The webpage title
+%:annotation Equivalent to [[%:link][%:description]]
+%i The selected text
+@end example
+
@node @code{open-source} protocol
@subsection @code{open-source} protocol
@cindex open-source protocol
diff --git a/lisp/org.el b/lisp/org.el
index 99eba2d..ba8d72d 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -9838,7 +9838,9 @@ active region."
(car org-stored-links)))))
(defun org-store-link-props (&rest plist)
- "Store link properties, extract names, addresses and dates."
+ "Store link properties.
+The properties are pre-processed by extracting names, addresses
+and dates."
(let ((x (plist-get plist :from)))
(when x
(let ((adr (mail-extract-address-components x)))