Re: [ODT][BUG] Format error on export with table in list structure

2024-04-05 Thread Ihor Radchenko
Ihor Radchenko  writes:

>> Consider the following minimal example, a nested list with a table in a
>> sub-item (regardless of list types and empty lines):
>>
>> #+BEGIN_EXAMPLE
>> 1. List item
>>- Sub-item
>>  | Table |
>> #+END_EXAMPLE
>>
>> This causes a format error on ODT export (I'm running Org version
>> 9.5.4). In the content.xml file, just before the final closing
>>  tag, there appears a  tag without a
>> corresponding opening tag, invalidating the XML.
>
> Confirmed.

Fixed, on main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=ef4364287

Note that ODT format does not allow tables inside lists, so we do
nothing better than a workaround. It is generally not a good idea to
export documents like this to odt.

There is still a bug in a similar scenario when the table is nested even
further:

1. List item
   - Sub-item
 #+begin_textbox
 | Table |
 #+end_textbox

I added a FIXME to the code.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=d491a74fd

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at .
Support Org development at ,
or support my work at 



Re: [ODT][BUG] Format error on export with table in list structure

2022-08-10 Thread Ihor Radchenko
Christian Moe  writes:

> Consider the following minimal example, a nested list with a table in a
> sub-item (regardless of list types and empty lines):
>
> #+BEGIN_EXAMPLE
> 1. List item
>- Sub-item
>  | Table |
> #+END_EXAMPLE
>
> This causes a format error on ODT export (I'm running Org version
> 9.5.4). In the content.xml file, just before the final closing
>  tag, there appears a  tag without a
> corresponding opening tag, invalidating the XML.

Confirmed.

-- 
Ihor Radchenko,
Org mode contributor,
Learn more about Org mode at https://orgmode.org/.
Support Org development at https://liberapay.com/org-mode,
or support my work at https://liberapay.com/yantar92



[ODT][BUG] Format error on export with table in list structure

2022-08-10 Thread Christian Moe


Hi,

Consider the following minimal example, a nested list with a table in a
sub-item (regardless of list types and empty lines):

#+BEGIN_EXAMPLE
1. List item
   - Sub-item
 | Table |
#+END_EXAMPLE

This causes a format error on ODT export (I'm running Org version
9.5.4). In the content.xml file, just before the final closing
 tag, there appears a  tag without a
corresponding opening tag, invalidating the XML.

It may be related to this problem that, just after the table section,
for some reason there appears another numbered list item containing an
empty bulleted list, as if the list were trying to continue.

However, surrounding the table with further list items does not
help. This example causes the same error:

#+BEGIN_EXAMPLE
1. List item
   - Sub-item
 | Table |
   - Second sub-item
2. Second top-level item
#+END_EXAMPLE

If this can be reproduced, I think it's a bug.

(It might be argued that this mix of lists and tables is an abomination
and should not be allowed anyway, but it works in the other exporters.)

What *does* help, strangely, is mixing yet another table into the list
structure. The following example exports without error.

#+BEGIN_EXAMPLE
1. List item
   | Table |
   - Sub-item
 | Table |
#+END_EXAMPLE

Perhaps this can somehow help pin down the problem.

Yours,
Christian