]> git.donarmstrong.com Git - org-ref.git/blobdiff - doi-utils.org
set some blocks not to tangle
[org-ref.git] / doi-utils.org
index 68c74bcc3fde4ff88d3daa94bc5b934e99ddc400..c18345d947bcd29103cb50b8b3b4f7995fd8cc86 100644 (file)
@@ -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))