From: John Kitchin Date: Tue, 24 Feb 2015 15:48:18 +0000 (-0500) Subject: set some blocks not to tangle X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=commitdiff_plain;h=d060f46b42ca6d29a8bf514aed3c2e9cf4f67272 set some blocks not to tangle --- 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))