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

4 years ago
  1. ;;; org-ref-worldcat.el --- Worldcat library
  2. ;;; Commentary:
  3. ;; Provides a function to query world cat
  4. ;; See:
  5. ;; https://www.worldcat.org/wcpa/content/affiliate/default.jsp
  6. ;; https://www.worldcat.org/affiliate/tools?atype=text
  7. ;;; Code:
  8. (defun worldcat-query-all (query)
  9. "Open browser to Worldcat QUERY."
  10. (browse-url
  11. (format
  12. "http://www.worldcat.org/search?qt=worldcat_org_all&q=%s"
  13. query)))
  14. (provide 'org-ref-worldcat)
  15. ;;; org-ref-worldcat.el ends here