2010-06-11 19:02:42 -04:00
|
|
|
;;; ob-exp.el --- Exportation of org-babel source blocks
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2012-01-03 12:47:01 -05:00
|
|
|
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2011-08-24 14:55:11 -04:00
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Dan Davison
|
2009-04-23 18:48:22 -04:00
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2010-06-25 12:20:39 -04:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2010-06-25 12:20:39 -04:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-04-23 18:48:22 -04:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 12:20:39 -04:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-04-23 18:48:22 -04:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 12:20:39 -04:00
|
|
|
|
2009-04-23 18:48:22 -04:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 12:20:39 -04:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2009-04-23 18:48:22 -04:00
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 19:02:42 -04:00
|
|
|
(require 'ob)
|
2009-04-26 16:29:59 -04:00
|
|
|
(require 'org-exp-blocks)
|
2010-06-12 21:32:23 -04:00
|
|
|
(eval-when-compile
|
|
|
|
(require 'cl))
|
|
|
|
|
2010-06-14 21:22:41 -04:00
|
|
|
(defvar obe-marker nil)
|
|
|
|
(defvar org-current-export-file)
|
|
|
|
(defvar org-babel-lob-one-liner-regexp)
|
|
|
|
(defvar org-babel-ref-split-regexp)
|
|
|
|
(declare-function org-babel-lob-get-info "ob-lob" ())
|
2010-11-18 08:09:46 -05:00
|
|
|
(declare-function org-babel-eval-wipe-error-buffer "ob-eval" ())
|
2012-01-23 12:33:12 -05:00
|
|
|
(add-to-list 'org-export-interblocks '(src org-babel-exp-non-block-elements))
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2011-01-27 15:33:35 -05:00
|
|
|
(org-export-blocks-add-block '(src org-babel-exp-src-block nil))
|
2010-06-12 21:32:23 -04:00
|
|
|
|
2010-07-08 13:28:47 -04:00
|
|
|
(defcustom org-export-babel-evaluate t
|
|
|
|
"Switch controlling code evaluation during export.
|
2010-09-26 06:39:43 -04:00
|
|
|
When set to nil no code will be evaluated as part of the export
|
2010-07-08 13:28:47 -04:00
|
|
|
process."
|
|
|
|
:group 'org-babel
|
Add version tag "24.1" for options introduced since Emacs 23.4 (and <= 24.1)
* org-exp.el (org-export-kill-product-buffer-when-displayed)
(org-export-initial-scope, org-export-date-timestamp-format)
(org-export-with-tasks, org-export-email-info)
(org-export-table-remove-empty-lines): Add version tag.
* org-mobile.el (org-mobile-files-exclude-regexp)
(org-mobile-use-encryption, org-mobile-encryption-tempfile)
(org-mobile-encryption-password, org-mobile-agendas): Add
version tag.
* ob-plantuml.el (org-plantuml-jar-path): Add version tag.
* org.el (org-babel-load-languages, org-clone-delete-id)
(org-log-buffer-setup-hook)
(org-loop-over-headlines-in-active-region)
(org-use-sub-superscripts, org-startup-with-beamer-mode)
(org-startup-with-inline-images, org-ctrl-k-protect-subtree)
(org-catch-invisible-edits)
(org-link-search-must-match-exact-headline)
(org-confirm-shell-link-not-regexp)
(org-confirm-elisp-link-not-regexp, org-log-refile)
(org-refile-use-cache)
(org-refile-active-region-within-subtree)
(org-todo-repeat-to-state, org-get-priority-function)
(org-agenda-jump-prefer-future)
(org-read-date-force-compatible-dates)
(org-use-effective-time)
(org-complete-tags-always-offer-all-agenda-tags)
(org-properties-postprocess-alist)
(org-format-latex-signal-error)
(org-latex-to-mathml-jar-file)
(org-latex-to-mathml-convert-command)
(org-export-latex-default-packages-alist)
(org-hidden-keywords, org-pretty-entities)
(org-pretty-entities-include-sub-superscripts)
(org-src-fontify-natively, org-effort-durations)
(org-speed-command-hook): Add version tag.
* org-html.el (org-export-html-footnote-separator)
(org-export-html-mathjax-options)
(org-export-html-mathjax-template)
(org-export-html-headline-anchor-format)
(org-export-html-preamble-format)
(org-export-html-postamble-format)
(org-export-html-table-align-individual-fields)
(org-export-html-protect-char-alist, org-export-html-divs):
Add version tag.
* org-ctags.el (org-ctags-path-to-ctags)
(org-ctags-open-link-functions)
(org-ctags-new-topic-template): Add version tag.
* ob-exp.el (org-export-babel-evaluate): Add version tag.
* org-beamer.el (org-beamer-use-parts)
(org-beamer-frame-level, org-beamer-frame-default-options)
(org-beamer-column-view-format, org-beamer-themes)
(org-beamer-environments-extra, org-beamer-fragile-re)
(org-beamer-outline-frame-title)
(org-beamer-outline-frame-options): Add version tag.
* org-wl.el (org-wl-link-remove-filter)
(org-wl-shimbun-prefer-web-links)
(org-wl-nntp-prefer-web-links, org-wl-disable-folder-check)
(org-wl-namazu-default-index): Add version tag.
* org-clock.el (org-task-overrun-text)
(org-clocktable-defaults, org-clock-clocktable-formatter)
(org-clock-clocktable-language-setup)
(org-clock-report-include-clocking-task)
(org-clock-resolve-expert): Add version tag.
* ob-lob.el (org-babel-lob-files): Add version tag.
* org-freemind.el (org-freemind-node-css-style): Add version
tag.
* org-archive.el (org-archive-reversed-order)
(org-archive-subtree-add-inherited-tags): Add version tag.
* org-bibtex.el (org-bibtex-autogen-keys, org-bibtex-prefix)
(org-bibtex-treat-headline-as-title)
(org-bibtex-export-arbitrary-fields)
(org-bibtex-key-property, org-bibtex-tags)
(org-bibtex-tags-are-keywords, org-bibtex-no-export-tags)
(org-bibtex-type-property-name): Add version tag.
* org-timer.el (org-timer-default-timer): Add version tag.
* org-taskjuggler.el (org-export-taskjuggler-extension)
(org-export-taskjuggler-project-tag)
(org-export-taskjuggler-resource-tag)
(org-export-taskjuggler-target-version)
(org-export-taskjuggler-default-project-version)
(org-export-taskjuggler-default-project-duration)
(org-export-taskjuggler-default-reports)
(org-export-taskjuggler-default-global-properties): Add
version tag.
* org-habit.el (org-habit-today-glyph)
(org-habit-completed-glyph): Add version tag.
* org-list.el (org-alphabetical-lists)
(org-list-ending-method, org-list-end-regexp)
(org-list-automatic-rules, org-list-use-circular-motion)
(org-list-indent-offset): Add version tag.
* ob-picolisp.el (org-babel-picolisp-cmd): Add version tag.
* org-icalendar.el (org-icalendar-alarm-time)
(org-icalendar-combined-description)
(org-icalendar-honor-noexport-tag)
(org-icalendar-date-time-format): Add version tag.
* org-src.el (org-src-tab-acts-natively): Add version tag.
* org-exp-blocks.el (org-export-blocks-postblock-hook): Add
version tag.
* org-table.el (org-table-exit-follow-field-mode-when-leaving-table)
(org-table-fix-formulas-confirm)
(org-table-duration-custom-format)
(org-table-formula-field-format): Add version tag.
* org-publish.el (org-publish-sitemap-sort-files)
(org-publish-sitemap-sort-folders)
(org-publish-sitemap-sort-ignore-case)
(org-publish-sitemap-date-format)
(org-publish-sitemap-file-entry-format): Add version tag.
* ob-js.el (org-babel-js-cmd): Add version tag.
* org-docbook.el (org-export-docbook-footnote-separator)
(org-export-docbook-xslt-stylesheet): Add version tag.
* org-entities.el (org-entities-ascii-explanatory)
(org-entities-user): Add version tag.
* ob.el (org-confirm-babel-evaluate)
(org-babel-no-eval-on-ctrl-c-ctrl-c): Add version tag.
* ob-tangle.el (org-babel-tangle-lang-exts)
(org-babel-post-tangle-hook, org-babel-pre-tangle-hook)
(org-babel-tangle-body-hook)
(org-babel-tangle-comment-format-beg)
(org-babel-tangle-comment-format-end)
(org-babel-process-comment-text): Add version tag.
* org-gnus.el (org-gnus-nnimap-query-article-no-from-file):
Add version tag.
* org-crypt.el (org-crypt-disable-auto-save): Add version tag.
* org-inlinetask.el (org-inlinetask-default-state): Add
version tag.
* ob-scheme.el (org-babel-scheme-cmd): Add version tag.
* ob-lisp.el (org-babel-lisp-dir-fmt): Add version tag.
* org-attach.el (org-attach-store-link-p): Add version tag.
* org-capture.el (org-capture-templates)
(org-capture-before-finalize-hook)
(org-capture-after-finalize-hook): Add version tag.
* org-agenda.el (org-agenda-skip-deadline-prewarning-if-scheduled)
(org-agenda-time-leading-zero, org-agenda-follow-indirect)
(org-agenda-menu-two-column, org-agenda-menu-show-matcher)
(org-agenda-timegrid-use-ampm)
(org-agenda-remove-timeranges-from-blocks)
(org-agenda-inactive-leader, org-agenda-current-time-string)
(org-agenda-show-current-time-in-grid)
(org-agenda-search-view-force-full-words)
(org-agenda-search-view-always-boolean)
(org-agenda-clock-consistency-checks)
(org-agenda-include-deadlines)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-day-face-function)
(org-agenda-category-icon-alist)
(org-agenda-bulk-custom-functions)
(org-agenda-insert-diary-extract-time): Add version tag.
* org-latex.el (org-export-latex-inputenc-alist)
(org-export-latex-tag-markup)
(org-export-latex-timestamp-inactive-markup)
(org-export-latex-href-format)
(org-export-latex-hyperref-format)
(org-export-latex-footnote-separator)
(org-export-latex-quotes)
(org-export-latex-table-caption-above)
(org-export-latex-listings-w-names)
(org-export-latex-minted-langs)
(org-export-latex-listings-options)
(org-export-latex-minted-options)
(org-latex-default-figure-position, org-export-pdf-logfiles):
Add version tag.
* org-faces.el (org-faces-easy-properties)
(org-fontify-quote-and-verse-blocks, org-cycle-level-faces):
Add version tag.
* ob-ditaa.el (org-ditaa-jar-option): Add version tag.
Thanks to Glenn Morris for reporting this.
2012-02-13 09:49:28 -05:00
|
|
|
:version "24.1"
|
2010-07-08 13:28:47 -04:00
|
|
|
:type 'boolean)
|
2010-07-08 18:11:38 -04:00
|
|
|
(put 'org-export-babel-evaluate 'safe-local-variable (lambda (x) (eq x nil)))
|
2010-07-08 13:28:47 -04:00
|
|
|
|
2012-01-15 12:46:48 -05:00
|
|
|
(defun org-babel-exp-get-export-buffer ()
|
|
|
|
"Return the current export buffer if possible."
|
|
|
|
(cond
|
|
|
|
((bufferp org-current-export-file) org-current-export-file)
|
|
|
|
(org-current-export-file (get-file-buffer org-current-export-file))
|
|
|
|
('otherwise
|
|
|
|
(error "Requested export buffer when `org-current-export-file' is nil"))))
|
|
|
|
|
2011-03-01 12:52:35 -05:00
|
|
|
(defmacro org-babel-exp-in-export-file (lang &rest body)
|
|
|
|
(declare (indent 1))
|
|
|
|
`(let* ((lang-headers (intern (concat "org-babel-default-header-args:" ,lang)))
|
2010-10-15 20:00:57 -04:00
|
|
|
(heading (nth 4 (ignore-errors (org-heading-components))))
|
2012-01-15 12:46:48 -05:00
|
|
|
(export-buffer (current-buffer))
|
|
|
|
(original-buffer (org-babel-exp-get-export-buffer)) results)
|
|
|
|
(when original-buffer
|
2010-10-15 20:00:57 -04:00
|
|
|
;; resolve parameters in the original file so that
|
|
|
|
;; headline and file-wide parameters are included, attempt
|
|
|
|
;; to go to the same heading in the original file
|
2012-01-15 12:46:48 -05:00
|
|
|
(set-buffer original-buffer)
|
2010-10-15 20:00:57 -04:00
|
|
|
(save-restriction
|
2012-01-13 17:33:41 -05:00
|
|
|
(when heading
|
|
|
|
(condition-case nil
|
|
|
|
(let ((org-link-search-inhibit-query t))
|
|
|
|
(org-link-search heading))
|
|
|
|
(error (when heading
|
|
|
|
(goto-char (point-min))
|
|
|
|
(re-search-forward (regexp-quote heading) nil t)))))
|
2010-10-15 20:00:57 -04:00
|
|
|
(setq results ,@body))
|
|
|
|
(set-buffer export-buffer)
|
|
|
|
results)))
|
Provide edebug specifications for macros
* org-macs.el (org-with-gensyms, org-called-interactively-p)
(with-silent-modifications, org-bound-and-true-p)
(org-unmodified, org-re, org-preserve-lc)
(org-without-partial-completion, org-with-point-at)
(org-no-warnings, org-if-unprotected, org-if-unprotected-1)
(org-if-unprotected-at, org-with-remote-undo)
(org-no-read-only, org-save-outline-visibility)
(org-with-wide-buffer, org-with-limited-levels)
(org-eval-in-environment): Provide edebug specifications.
* org-src.el (org-src-do-at-code-block): Dto.
* org-publish.el (org-publish-with-aux-preprocess-maybe): Dto.
* org-compat.el (org-xemacs-without-invisibility): Dto.
* org-clock.el (org-with-clock-position, org-with-clock): Dto.
* org-agenda.el (org-agenda-with-point-at-orig-entry)
(org-batch-agenda, org-batch-agenda-csv)
(org-batch-store-agenda-views): Dto.
* ob.el (org-babel-do-in-edit-buffer)
(org-babel-map-src-blocks, org-babel-map-inline-src-blocks): Dto.
* ob-tangle.el (org-babel-with-temp-filebuffer): Dto.
* ob-table.el (sbe): Dto.
* ob-exp.el (org-babel-exp-in-export-file): Dto.
* ob-comint.el (org-babel-comint-in-buffer)
(org-babel-comint-with-output): Dto.
2011-08-11 02:57:25 -04:00
|
|
|
(def-edebug-spec org-babel-exp-in-export-file (form body))
|
2010-10-15 20:00:57 -04:00
|
|
|
|
2011-01-27 15:33:35 -05:00
|
|
|
(defun org-babel-exp-src-block (body &rest headers)
|
2010-07-13 19:04:47 -04:00
|
|
|
"Process source block for export.
|
|
|
|
Depending on the 'export' headers argument in replace the source
|
|
|
|
code block with...
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2009-08-17 14:19:25 -04:00
|
|
|
both ---- display the code and the results
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2009-08-17 14:19:25 -04:00
|
|
|
code ---- the default, display the code inside the block but do
|
|
|
|
not process
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2009-09-01 17:42:14 -04:00
|
|
|
results - just like none only the block is run on export ensuring
|
|
|
|
that it's results are present in the org-mode buffer
|
2009-04-23 18:48:22 -04:00
|
|
|
|
|
|
|
none ----- do not display either code or results upon export"
|
|
|
|
(interactive)
|
2011-06-22 22:12:14 -04:00
|
|
|
(unless noninteractive (message "org-babel-exp processing..."))
|
2010-06-17 12:29:38 -04:00
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-beginning 0))
|
2010-10-15 11:13:51 -04:00
|
|
|
(let* ((info (org-babel-get-src-block-info 'light))
|
2010-09-18 21:01:49 -04:00
|
|
|
(lang (nth 0 info))
|
2011-02-27 13:01:56 -05:00
|
|
|
(raw-params (nth 2 info)) hash)
|
2010-07-16 18:34:57 -04:00
|
|
|
;; bail if we couldn't get any info from the block
|
|
|
|
(when info
|
2011-02-27 13:01:56 -05:00
|
|
|
;; if we're actually going to need the parameters
|
|
|
|
(when (member (cdr (assoc :exports (nth 2 info))) '("both" "results"))
|
2011-03-01 12:52:35 -05:00
|
|
|
(org-babel-exp-in-export-file lang
|
|
|
|
(setf (nth 2 info)
|
|
|
|
(org-babel-process-params
|
|
|
|
(org-babel-merge-params
|
|
|
|
org-babel-default-header-args
|
|
|
|
(org-babel-params-from-properties lang)
|
|
|
|
(if (boundp lang-headers) (eval lang-headers) nil)
|
|
|
|
raw-params))))
|
2011-02-27 13:01:56 -05:00
|
|
|
(setf hash (org-babel-sha1-hash info)))
|
2010-07-16 18:34:57 -04:00
|
|
|
;; expand noweb references in the original file
|
|
|
|
(setf (nth 1 info)
|
2012-02-01 10:17:08 -05:00
|
|
|
(if (string= "strip-export" (cdr (assoc :noweb (nth 2 info))))
|
|
|
|
(replace-regexp-in-string
|
|
|
|
(org-babel-noweb-wrap) "" (nth 1 info))
|
|
|
|
(if (org-babel-noweb-p (nth 2 info) :export)
|
|
|
|
(org-babel-expand-noweb-references
|
2012-01-15 12:46:48 -05:00
|
|
|
info (org-babel-exp-get-export-buffer))
|
2012-02-01 10:17:08 -05:00
|
|
|
(nth 1 info))))
|
2011-02-27 13:01:56 -05:00
|
|
|
(org-babel-exp-do-export info 'block hash)))))
|
2009-04-26 16:29:59 -04:00
|
|
|
|
2012-01-23 14:52:57 -05:00
|
|
|
(defcustom org-babel-exp-call-line-template
|
|
|
|
""
|
|
|
|
"Template used to export call lines.
|
|
|
|
This template may be customized to include the call line name
|
|
|
|
with any export markup. The template is filled out using
|
|
|
|
`org-fill-template', and the following %keys may be used.
|
|
|
|
|
|
|
|
line --- call line
|
|
|
|
|
|
|
|
An example value would be \"\\n: call: %line\" to export the call line
|
|
|
|
wrapped in a verbatim environment.
|
|
|
|
|
|
|
|
Note: the results are inserted separately after the contents of
|
|
|
|
this template."
|
|
|
|
:group 'org-babel
|
|
|
|
:type 'string)
|
|
|
|
|
2012-01-23 12:33:12 -05:00
|
|
|
(defvar org-babel-default-lob-header-args)
|
|
|
|
(defun org-babel-exp-non-block-elements (start end)
|
|
|
|
"Process inline source and call lines between START and END for export."
|
2009-04-26 16:29:59 -04:00
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char start)
|
2012-01-23 12:33:12 -05:00
|
|
|
(unless (markerp end)
|
|
|
|
(let ((m (make-marker)))
|
|
|
|
(set-marker m end (current-buffer))
|
|
|
|
(setq end m)))
|
|
|
|
(let ((rx (concat "\\(" org-babel-inline-src-block-regexp
|
|
|
|
"\\|" org-babel-lob-one-liner-regexp "\\)")))
|
|
|
|
(while (and (< (point) (marker-position end))
|
|
|
|
(re-search-forward rx end t))
|
|
|
|
(if (save-excursion
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
(looking-at org-babel-inline-src-block-regexp))
|
|
|
|
(progn
|
|
|
|
(forward-char 1)
|
|
|
|
(let* ((info (save-match-data
|
|
|
|
(org-babel-parse-inline-src-block-match)))
|
|
|
|
(params (nth 2 info)))
|
|
|
|
(save-match-data
|
|
|
|
(goto-char (match-beginning 2))
|
|
|
|
(unless (org-babel-in-example-or-verbatim)
|
|
|
|
;; expand noweb references in the original file
|
|
|
|
(setf (nth 1 info)
|
|
|
|
(if (and (cdr (assoc :noweb params))
|
|
|
|
(string= "yes" (cdr (assoc :noweb params))))
|
|
|
|
(org-babel-expand-noweb-references
|
2012-01-15 12:46:48 -05:00
|
|
|
info (org-babel-exp-get-export-buffer))
|
2012-01-23 12:33:12 -05:00
|
|
|
(nth 1 info)))
|
|
|
|
(let ((code-replacement (save-match-data
|
|
|
|
(org-babel-exp-do-export
|
|
|
|
info 'inline))))
|
|
|
|
(if code-replacement
|
2012-01-27 18:29:03 -05:00
|
|
|
(progn (replace-match code-replacement nil nil nil 1)
|
|
|
|
(delete-char 1))
|
2012-01-23 12:33:12 -05:00
|
|
|
(org-babel-examplize-region (match-beginning 1)
|
|
|
|
(match-end 1))
|
|
|
|
(forward-char 2)))))))
|
2011-08-21 16:23:27 -04:00
|
|
|
(unless (org-babel-in-example-or-verbatim)
|
2012-01-23 12:33:12 -05:00
|
|
|
(let* ((lob-info (org-babel-lob-get-info))
|
|
|
|
(inlinep (match-string 11))
|
|
|
|
(inline-start (match-end 11))
|
|
|
|
(inline-end (match-end 0))
|
2012-01-23 14:52:57 -05:00
|
|
|
(results (save-match-data
|
|
|
|
(org-babel-exp-do-export
|
|
|
|
(list "emacs-lisp" "results"
|
|
|
|
(org-babel-merge-params
|
|
|
|
org-babel-default-header-args
|
|
|
|
org-babel-default-lob-header-args
|
|
|
|
(org-babel-params-from-properties)
|
|
|
|
(org-babel-parse-header-arguments
|
|
|
|
(org-babel-clean-text-properties
|
|
|
|
(concat ":var results="
|
|
|
|
(mapconcat #'identity
|
|
|
|
(butlast lob-info)
|
|
|
|
" ")))))
|
|
|
|
"" nil (car (last lob-info)))
|
|
|
|
'lob)))
|
|
|
|
(rep (org-fill-template
|
|
|
|
org-babel-exp-call-line-template
|
|
|
|
`(("line" . ,(nth 0 lob-info))))))
|
2012-01-23 12:33:12 -05:00
|
|
|
(if inlinep
|
|
|
|
(save-excursion
|
|
|
|
(goto-char inline-start)
|
|
|
|
(delete-region inline-start inline-end)
|
|
|
|
(insert rep))
|
|
|
|
(replace-match rep t t)))))))))
|
2010-06-08 19:19:54 -04:00
|
|
|
|
|
|
|
(defun org-babel-in-example-or-verbatim ()
|
2010-07-13 19:04:47 -04:00
|
|
|
"Return true if point is in example or verbatim code.
|
|
|
|
Example and verbatim code include escaped portions of
|
|
|
|
an org-mode buffer code that should be treated as normal
|
2010-06-08 19:19:54 -04:00
|
|
|
org-mode text."
|
2011-11-10 12:12:30 -05:00
|
|
|
(or (save-match-data
|
2011-06-28 13:14:58 -04:00
|
|
|
(save-excursion
|
2010-06-08 19:19:54 -04:00
|
|
|
(goto-char (point-at-bol))
|
|
|
|
(looking-at "[ \t]*:[ \t]")))
|
2011-06-28 13:14:58 -04:00
|
|
|
(org-in-verbatim-emphasis)
|
2011-11-08 21:42:59 -05:00
|
|
|
(org-in-block-p org-list-forbidden-blocks)
|
2011-07-30 03:14:38 -04:00
|
|
|
(org-between-regexps-p "^[ \t]*#\\+begin_src" "^[ \t]*#\\+end_src")))
|
2009-04-26 16:29:59 -04:00
|
|
|
|
2011-02-27 13:01:56 -05:00
|
|
|
(defun org-babel-exp-do-export (info type &optional hash)
|
2010-07-13 19:04:47 -04:00
|
|
|
"Return a string with the exported content of a code block.
|
|
|
|
The function respects the value of the :exports header argument."
|
2010-06-12 21:26:08 -04:00
|
|
|
(flet ((silently () (let ((session (cdr (assoc :session (nth 2 info)))))
|
2011-03-15 09:12:25 -04:00
|
|
|
(when (not (and session (equal "none" session)))
|
2010-06-07 16:35:28 -04:00
|
|
|
(org-babel-exp-results info type 'silent))))
|
2011-01-27 15:33:35 -05:00
|
|
|
(clean () (unless (eq type 'inline) (org-babel-remove-result info))))
|
2010-06-12 21:26:08 -04:00
|
|
|
(case (intern (or (cdr (assoc :exports (nth 2 info))) "code"))
|
2010-06-07 16:20:22 -04:00
|
|
|
('none (silently) (clean) "")
|
2011-05-19 09:37:33 -04:00
|
|
|
('code (silently) (clean) (org-babel-exp-code info))
|
2011-02-27 13:01:56 -05:00
|
|
|
('results (org-babel-exp-results info type nil hash) "")
|
2011-05-19 09:37:33 -04:00
|
|
|
('both (org-babel-exp-results info type nil hash)
|
|
|
|
(org-babel-exp-code info)))))
|
|
|
|
|
2012-01-14 14:09:32 -05:00
|
|
|
(defcustom org-babel-exp-code-template
|
|
|
|
"#+BEGIN_SRC %lang%flags\n%body\n#+END_SRC"
|
|
|
|
"Template used to export the body of code blocks.
|
|
|
|
This template may be customized to include additional information
|
|
|
|
such as the code block name, or the values of particular header
|
|
|
|
arguments. The template is filled out using `org-fill-template',
|
|
|
|
and the following %keys may be used.
|
|
|
|
|
|
|
|
lang ------ the language of the code block
|
|
|
|
name ------ the name of the code block
|
|
|
|
body ------ the body of the code block
|
|
|
|
flags ----- the flags passed to the code block
|
|
|
|
|
|
|
|
In addition to the keys mentioned above, every header argument
|
|
|
|
defined for the code block may be used as a key and will be
|
|
|
|
replaced with its value."
|
|
|
|
:group 'org-babel
|
|
|
|
:type 'string)
|
|
|
|
|
2011-05-19 09:37:33 -04:00
|
|
|
(defun org-babel-exp-code (info)
|
|
|
|
"Return the original code block formatted for export."
|
2011-05-19 13:05:41 -04:00
|
|
|
(org-fill-template
|
2012-01-14 14:09:32 -05:00
|
|
|
org-babel-exp-code-template
|
2011-05-19 13:05:41 -04:00
|
|
|
`(("lang" . ,(nth 0 info))
|
2012-01-14 14:09:32 -05:00
|
|
|
("body" . ,(nth 1 info))
|
|
|
|
,@(mapcar (lambda (pair)
|
|
|
|
(cons (substring (symbol-name (car pair)) 1)
|
|
|
|
(format "%S" (cdr pair))))
|
|
|
|
(nth 2 info))
|
2011-05-19 13:05:41 -04:00
|
|
|
("flags" . ,((lambda (f) (when f (concat " " f))) (nth 3 info)))
|
2012-01-14 14:50:31 -05:00
|
|
|
("name" . ,(or (nth 4 info) "")))))
|
2009-04-23 18:48:22 -04:00
|
|
|
|
2011-02-27 13:01:56 -05:00
|
|
|
(defun org-babel-exp-results (info type &optional silent hash)
|
2010-07-13 19:04:47 -04:00
|
|
|
"Evaluate and return the results of the current code block for export.
|
|
|
|
Results are prepared in a manner suitable for export by org-mode.
|
|
|
|
This function is called by `org-babel-exp-do-export'. The code
|
|
|
|
block will be evaluated. Optional argument SILENT can be used to
|
|
|
|
inhibit insertion of results into the buffer."
|
2011-02-27 13:01:56 -05:00
|
|
|
(when (and org-export-babel-evaluate
|
2011-07-18 19:08:37 -04:00
|
|
|
(not (and hash (equal hash (org-babel-current-result-hash)))))
|
2011-01-27 14:48:45 -05:00
|
|
|
(let ((lang (nth 0 info))
|
2012-01-16 22:39:12 -05:00
|
|
|
(body (nth 1 info))
|
|
|
|
(info (copy-sequence info)))
|
2011-01-27 14:48:45 -05:00
|
|
|
;; skip code blocks which we can't evaluate
|
|
|
|
(when (fboundp (intern (concat "org-babel-execute:" lang)))
|
|
|
|
(org-babel-eval-wipe-error-buffer)
|
|
|
|
(prog1 nil
|
|
|
|
(setf (nth 2 info)
|
2011-03-02 09:32:02 -05:00
|
|
|
(org-babel-exp-in-export-file lang
|
|
|
|
(org-babel-process-params
|
|
|
|
(org-babel-merge-params
|
|
|
|
(nth 2 info)
|
|
|
|
`((:results . ,(if silent "silent" "replace")))))))
|
2011-01-27 14:48:45 -05:00
|
|
|
(cond
|
2011-08-22 10:09:28 -04:00
|
|
|
((equal type 'block)
|
|
|
|
(org-babel-execute-src-block nil info))
|
|
|
|
((equal type 'inline)
|
|
|
|
;; position the point on the inline source block allowing
|
|
|
|
;; `org-babel-insert-result' to check that the block is
|
|
|
|
;; inline
|
|
|
|
(re-search-backward "[ \f\t\n\r\v]" nil t)
|
|
|
|
(re-search-forward org-babel-inline-src-block-regexp nil t)
|
|
|
|
(re-search-backward "src_" nil t)
|
2011-01-27 14:48:45 -05:00
|
|
|
(org-babel-execute-src-block nil info))
|
|
|
|
((equal type 'lob)
|
|
|
|
(save-excursion
|
|
|
|
(re-search-backward org-babel-lob-one-liner-regexp nil t)
|
|
|
|
(org-babel-execute-src-block nil info)))))))))
|
2009-09-12 14:14:09 -04:00
|
|
|
|
2010-06-11 19:02:42 -04:00
|
|
|
(provide 'ob-exp)
|
2010-06-25 12:20:39 -04:00
|
|
|
|
2011-08-15 14:04:38 -04:00
|
|
|
|
2010-06-25 12:20:39 -04:00
|
|
|
|
2010-06-11 19:02:42 -04:00
|
|
|
;;; ob-exp.el ends here
|