0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-26 06:32:53 +00:00
org-mode/contrib/babel/lisp
Eric Schulte 1d2bab1fb8 org-babel: variable values are now indexable
it is now possible to only assign a portion of a value to a variable
  in a source block.  So for example the following will only assign
  the second and third lines of the table 'example-table' to the
  variable 'data'

  :var data=example-table[1:2]

  and the following will only assign the second column of the first row

  :var data=example-table[0,1]

  note that all indices are 0 based

  it is possible to index into the results of source-code blocks as
  well as tables.  any number of dimensions can be indexed as long as
  they are separated by ','s and ranges can be indexed using the ':'
  operator.  for more information on indexing behavior see
  `org-babel-ref-index-list'
2009-11-14 20:18:12 -07:00
..
langs org-babel: more robust version of :results value for python and perl. 2009-11-11 16:09:05 -05:00
org-babel-comint.el merging with the org-babel repository 2009-09-11 13:44:05 -06:00
org-babel-exp.el org-babel-exp: bug fix, once again allowing export of non-babel source blocks 2009-11-13 10:47:11 -07:00
org-babel-lob.el org-babel: export of functional-style source blocks 2009-11-01 10:05:42 -05:00
org-babel-ref.el org-babel: variable values are now indexable 2009-11-14 20:18:12 -07:00
org-babel-table.el org-babel: cleaner passing of parameter to language specific files 2009-11-10 15:23:00 -07:00
org-babel-tangle.el org-babel-tangle: Save buffer at outset. 2009-11-09 09:32:05 -07:00
org-babel.el org-babel: no longer consumes src-block reference strings during export 2009-11-12 18:31:55 -07:00