emacs-org-transform-tree-table icon indicating copy to clipboard operation
emacs-org-transform-tree-table copied to clipboard

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

Open ouboub opened this issue 3 years ago • 0 comments

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

ouboub avatar Jul 13 '22 05:07 ouboub