Hacker News new | ask | show | jobs
by kovek 3429 days ago
If you could point to one simple example of this it works be awesome! I've used org-babel but in a very fragmented way. My sessions were separated from each other and I did not use multiple languages on the same data
1 comments

The files are gone, but you do it by referring to the table/block names.

    #+name: data-table
    ....

    #+name: process-data
    #+begin_src lisp :var data=data-table
      ...
    #+end_src

    #+begin_src gnuplot :var data=process-data
      ...
    #+end_src