emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Is there a better (built-in) way to insert an org link with title as description?
@ 2023-07-19 12:06 Arthur Miller
  2023-07-20 10:04 ` Ihor Radchenko
  2023-07-20 11:01 ` Max Nikulin
  0 siblings, 2 replies; 9+ messages in thread
From: Arthur Miller @ 2023-07-19 12:06 UTC (permalink / raw)
  To: emacs-orgmode


Hello Org experts,

I want to auto insert a title from an HTML page as description for an org link in
my notes. I stumbled upon some old message by Miro Bezjak on this list:

https://lists.gnu.org/archive/html/emacs-orgmode/2012-09/msg01435.html

I have seen the replies, but I am not sure how to use
org-make-link-description-function, so I coded my own version of Miros idea:

#+begin_src emacs-lisp
(defun org-link-from-clipboard ()
  "Insert an org link into current buffer from an URL in clipboard."
  (interactive)
  (let ((marker (point-marker))
        (url
         (if (string-match-p "^\\(http\\|https\\)://" (current-kill 0))
             (current-kill 0)
           (read-string "URL: ")))
        (title nil))
    (when url
      (url-retrieve url
       (lambda (buffer)
         (goto-char (point-min))
         (when (re-search-forward "<title>\\(.*\\)</title>" nil t)
           (setq title (string-trim (match-string-no-properties 1))))
         (with-current-buffer (marker-buffer marker)
           (save-excursion
             (goto-char (marker-position marker))
             (org-insert-link
              nil url (or title (read-string "Description: "))))))
       nil t t))))
#+end_src

While my function is not very big, I would still like to learn how to use the
suggested built-in stuff from that discussion. I also dislike the interactive
fallback in asynchronous callback if the title is not found, but I would also
dislike to have a bunch of "No description found" strings in my notes too, so I
am not sure which one is less evil there.

Thankful for any help and advice.


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-07-27  6:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-19 12:06 Is there a better (built-in) way to insert an org link with title as description? Arthur Miller
2023-07-20 10:04 ` Ihor Radchenko
2023-07-21 14:18   ` Arthur Miller
2023-07-22  8:26     ` Ihor Radchenko
2023-07-27  6:26       ` Arthur Miller
2023-07-20 11:01 ` Max Nikulin
2023-07-21 13:04   ` Arthur Miller
2023-07-22  2:49     ` Max Nikulin
2023-07-22 10:55       ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).