branch: externals/org commit b1dc45424212031b451a568e5ea4938585aa6edb Merge: c822c80 5ee39c3 Author: Kyle Meyer <k...@kyleam.com> Commit: Kyle Meyer <k...@kyleam.com>
Merge branch 'maint' --- contrib/lisp/org-mac-link.el | 2 +- lisp/ox-html.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el index d16190e..e692acb 100644 --- a/contrib/lisp/org-mac-link.el +++ b/contrib/lisp/org-mac-link.el @@ -912,7 +912,7 @@ selected items in DEVONthink Pro Office and make link(s) out of it/them." "Visit the message with MESSAGE-ID. This will use the command `open' with the message URL." (start-process (concat "open message:" message-id) nil - "open" (concat "message://<" (substring message-id 2) ">"))) + "open" (concat "message://%3C" (substring message-id 2) "%3E"))) (defun org-as-get-selected-mail () "AppleScript to create links to selected messages in Mail.app." diff --git a/lisp/ox-html.el b/lisp/ox-html.el index d2f24f5..1a466fb 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -300,7 +300,7 @@ property on the headline itself.") padding: 3px; border: 1px solid black; } - pre.src:hover:before { display: inline;} + pre.src:hover:before { display: inline; margin-top: 14px;} /* Languages per Org manual */ pre.src-asymptote:before { content: 'Asymptote'; } pre.src-awk:before { content: 'Awk'; }