X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=blobdiff_plain;f=doi-utils.org;h=c18345d947bcd29103cb50b8b3b4f7995fd8cc86;hp=68c74bcc3fde4ff88d3daa94bc5b934e99ddc400;hb=dbf4fc3bfed591ebffab129abc3ad6359bea97fa;hpb=b54b91a69aa1f12de601581971b3d0e6f8bed902 diff --git a/doi-utils.org b/doi-utils.org index 68c74bc..c18345d 100644 --- a/doi-utils.org +++ b/doi-utils.org @@ -1148,7 +1148,7 @@ The idea here is to perform a query on Crossref, get a helm buffer of candidates #+END_EXAMPLE -#+BEGIN_SRC emacs-lisp :var data=json :results value raw +#+BEGIN_SRC emacs-lisp :var data=json :results value raw :tangle no (let ((json-object-type 'plist) (json (json-read-from-string data))) (aref json 0)) @@ -1160,7 +1160,7 @@ The idea here is to perform a query on Crossref, get a helm buffer of candidates Here is a list of helm candidates -#+BEGIN_SRC emacs-lisp :var data=json :results code +#+BEGIN_SRC emacs-lisp :var data=json :results code :tangle no (let (;(json-object-type 'plist) (json (json-read-from-string data))) (mapcar (lambda (x) (cons (assoc 'fullCitation x) x)) json))