Bookmarking with org-mode

I thought about writing a short post on how I tend to capture bookmarks using org-mode1 these days. Capture template I have following org-capture template2, defined in my Emacs configuration file based on the Doom config3, ;; Capture template ("l" "Daily Bookmarks" entry (file+headline (lambda () (personal-note 'daily)) "Bookmarks") "** %(org-cliplink-capture)%?\n" :unnarrowed t) ;; Utility function (defun personal-note (ntype) (cond ((string= 'daily ntype) (concat org-directory (format-time-string "/%Y/%B_%-e.org"))) ((string= 'work ntype) (concat org-directory (format-time-string "/work/%Y/note_%m_%d....

April 8, 2020