ob-passthrough.el (401B)
1 ;;; ob-passthrough.el --- passthrough evaluator -*- lexical-binding: t; -*- 2 3 ;; this ob evaluates the block as ifself, so it can be used as input 4 ;; for another block 5 6 (require 'ob) 7 8 (defun org-babel-execute:passthrough (body params) 9 body) 10 11 ;; json output is json 12 (defalias 'org-babel-execute:json 'org-babel-execute:passthrough) 13 14 (provide 'ob-passthrough) 15 ;;; ob-passthrough.el ends here