Update packages/ Add org-ref

This commit is contained in:
Mateus Pinto Rodrigues
2018-06-11 13:50:46 -03:00
parent 47702fe74a
commit f6ec2ebf59
504 changed files with 86348 additions and 611 deletions

View File

@@ -0,0 +1,20 @@
;;; 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