12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- (require 'org-babel)
- (require 'org-exp-blocks)
- (org-export-blocks-add-block '(src org-babel-exp-src-blocks nil))
- (add-to-list 'org-export-interblocks '(src org-babel-exp-inline-src-blocks))
- (defun org-babel-exp-src-blocks (body &rest headers)
- "Process src block for export. Depending on the 'export'
- headers argument in replace the source code block with...
- both ---- display the code and the results
- code ---- the default, display the code inside the block but do
- not process
- results - just like none only the block is run on export ensuring
- that it's results are present in the org-mode buffer
- none ----- do not display either code or results upon export"
- (interactive)
- (unless headers (error "org-babel can't process a source block without knowing the source code"))
- (message "org-babel-exp processing...")
- (let* ((lang (car headers))
- (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
- (params (org-babel-merge-params
- org-babel-default-header-args
- (org-babel-params-from-properties)
- (if (boundp lang-headers) (eval lang-headers) nil)
- (org-babel-parse-header-arguments
- (mapconcat #'identity (cdr headers) " ")))))
- (org-babel-exp-do-export lang body params)))
- (defun org-babel-exp-inline-src-blocks (start end)
- "Process inline src blocks between START and END for export.
- See `org-babel-exp-src-blocks' for export options, currently the
- options and are taken from `org-babel-defualt-inline-header-args'."
- (interactive)
- (save-excursion
- (goto-char start)
- (while (and (< (point) end) (re-search-forward org-babel-inline-src-block-regexp end t))
- (let* ((info (save-match-data (org-babel-parse-inline-src-block-match)))
- (replacement (save-match-data
- (org-babel-exp-do-export (first info) (second info) (third info) t))))
- (setf end (+ end (- (length replacement)
- (+ 6 (length (first info)) (length (second info))))))
- (replace-match replacement t t)))))
- (defun org-babel-exp-do-export (lang body params &optional inline)
- (case (intern (or (cdr (assoc :exports params)) "code"))
- ('none "")
- ('code (org-babel-exp-code body lang params inline))
- ('results (save-excursion
-
- (re-search-backward org-babel-src-block-regexp nil t)
- (org-babel-execute-src-block) ""))
- ('both (concat (org-babel-exp-code body lang params inline)
- "\n\n"
- (org-babel-exp-results body lang params inline)))))
- (defun org-babel-exp-code (body lang params &optional inline)
- (if inline
- (format "=%s=" body)
- (format "#+BEGIN_SRC %s\n%s%s\n#+END_SRC" lang body
- (if (string-match "\n$" body) "" "\n"))))
- (provide 'org-babel-exp)
|