On 14 jan. 2013, at 11:25, Xavier Garrido <[email protected]> wrote:
> Hi orgmoders,
>
> I am looking for a simple way to SEND all org tables in a given document to
> their RECEIVER counterparts. Of course, I can go through the whole document
> and do `org-table-send` one-by-one but I would like to do it without opening
> the document and for all tables at the same time. Is there a way ?
>
> Thanks for your help and advices,
> Xavier
Hi Xavier,
this should do the trick (untested):
(defun my-org-send-all-tables ()
(interactive)
(org-table-map-tables
(lambda () (orgtbl-send-table 'maybe))))
HTH
- Carsten