jplindstrom / emacs-org-transform-tree-table

Transform an org-mode outline and its properties to a table format (org-table, CSV)
GNU General Public License v3.0
26 stars 4 forks source link

if a tree contains a list it is nicely converted to a table, however when converting back the list structure is destroyed #5

Open ouboub opened 2 years ago

ouboub commented 2 years ago

Hi consider

* Heading
** First
** second
   1. Start a list
   2. Second item
      a. subitem

that is converted to

| Heading            |
| * Heading          |
| ** First           |
| ** second          |
|    1. Start a list |
|    2. Second item  |
|       a. subitem   |

however this is converted back to

* Heading
** First
** second
1. Start a list
2. Second item
a. subitem

so the list structure is lost. Any change to save it? regards Uwe Brauer