Get Emacs to gather links in posts

from blog lmno.lol @alvaro, | ↗ original
Comments in posts can be a great source of recommendations. Here's a way to extract post links using Emacs and enlive. (require 'enlive) ;; https://github.com/zweifisch/enlive (require 'org) (defun ar/input-clipboard-url-or-prompt () "Return a URL from clipboard or prompt user for one." (let* ((clipboard (current-kill 0)) (url (if...