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
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-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.el org-babel: no longer consumes src-block reference strings during export 2009-11-12 18:31:55 -07:00