emacs-org-transform-tree-table
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
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