Re: [O] accessing source block header arguments from exporters

2015-04-11 Thread John Kitchin
I agree with Not exactly. In this post http://kitchingroup.cheme.cmu.edu/blog/2014/09/22/Showing-what-data-went-into-a-code-block-on-export/ I did something where I wanted to get information about the variables passed into a block and show that on export. You might get some inspiration from that.

[O] accessing source block header arguments from exporters

2015-04-10 Thread Robert Klein
Hi, is there a way, to read header arguments to source blocks in the exporters org-exporter-src-block funktions? E.g. is there a way to access :firstline in the example below? #+begin_src c++ -n :firstline 23 static struct { char*entity; unsigned char

Re: [O] accessing source block header arguments from exporters

2015-04-10 Thread Charles Berry
Robert Klein roklein at roklein.de writes: Hi, is there a way, to read header arguments to source blocks in the exporters org-exporter-src-block funktions? Not directly. org-babel-exp-code has no provision for headers. They get dropped. E.g. is there a way to access :firstline in the