ob-table: Updated documentation.

* ob-table.el (org-sbe): Updated documentation.
This commit is contained in:
rasmus 2014-09-30 11:53:36 +02:00 committed by Rasmus
parent 7ad281c2c7
commit b54ad32a79
1 changed files with 8 additions and 2 deletions

View File

@ -47,7 +47,10 @@
;; | 7 | | ;; | 7 | |
;; | 8 | | ;; | 8 | |
;; | 9 | | ;; | 9 | |
;; #+TBLFM: $2='(org-sbe 'fibbd (n $1)) ;; #+TBLFM: $2='(org-sbe "fibbd" (n $1))
;; NOTE: The quotation marks around the function name, 'fibbd' here,
;; are optional.
;;; Code: ;;; Code:
(require 'ob-core) (require 'ob-core)
@ -69,7 +72,7 @@ string of its value.
So this `org-sbe' construct So this `org-sbe' construct
(org-sbe 'source-block (n $2) (m 3)) (org-sbe \"source-block\" (n $2) (m 3))
is the equivalent of the following source code block: is the equivalent of the following source code block:
@ -77,6 +80,9 @@ is the equivalent of the following source code block:
results results
#+end_src #+end_src
NOTE: The quotation marks around the function name,
'source-block', are optional.
NOTE: By default, string variable names are interpreted as NOTE: By default, string variable names are interpreted as
references to source-code blocks, to force interpretation of a references to source-code blocks, to force interpretation of a
cell's value as a string, prefix the identifier a \"$\" (e.g., cell's value as a string, prefix the identifier a \"$\" (e.g.,