Arthur Miller <arthur.mil...@live.com> writes: > 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
Since that time, Org got a capability to set description function per link type. Just use (org-link-set-parameters "http" :insert-description #'your-function) (org-link-set-parameters "https" :insert-description #'your-function) The calling convention is the same as `org-link-make-description-function'. -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>