Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
476 B

;;; org-ref-worldcat.el --- Worldcat library
;;; Commentary:
;; Provides a function to query world cat
;; See:
;; https://www.worldcat.org/wcpa/content/affiliate/default.jsp
;; https://www.worldcat.org/affiliate/tools?atype=text
;;; Code:
(defun worldcat-query-all (query)
"Open browser to Worldcat QUERY."
(browse-url
(format
"http://www.worldcat.org/search?qt=worldcat_org_all&q=%s"
query)))
(provide 'org-ref-worldcat)
;;; org-ref-worldcat.el ends here