Variable: org-babel-exp-call-line-template

org-babel-exp-call-line-template is a customizable variable defined in ob-exp.el.gz.

Value

""

Documentation

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.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-exp.el.gz
(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)