orgparse icon indicating copy to clipboard operation
orgparse copied to clipboard

support names on tables

Open jkitchin opened this issue 3 years ago • 1 comments

In an org-file like this, the table would have tabname as a name in the org-element. It would be helpful to have this information as attributes or something in orgparse.extra.Table.

#+caption: Some caption for a table
#+name: tabname
| x | y |
|---|---|
| 1 | 2 |

jkitchin avatar Jan 24 '21 16:01 jkitchin

Hmm good idea! So far I've been locating a named heading & extracting the table under it (assuming it's the only one), whereas if we used the name, it would simplify it.

karlicoss avatar Jan 24 '21 22:01 karlicoss