Hello, Jambunathan K <kjambunat...@gmail.com> writes:
> Export the following fragment to html > > * Another Table.el Table with Spanning > > +----------+----------+ > | Header 1 | Header 2 | > +----------+----------+ > | R1 C1-2 | > +----------+----------+ > | R2 C1 | R2-3 C2 | > + +----------+ > | | | > +----------+----------+ > > > Examine the temporary buffer that is emitted by > `org-export-preprocess-string'. Note that there is a ORG-LIST-END-MARKER > within the table.el table. > > > * Another Table.el Table with Spanning > > +----------+----------+ > | Header 1 | Header 2 | > +----------+----------+ > | R1 C1-2 | > +----------+----------+ > | R2 C1 | R2-3 C2 | > + +----------+ > ORG-LIST-END-MARKER > +----------+----------+ This is because + +----------+ is recognized as a list item. But this case shouldn't happen. If you span "R2 C1" cell vertically, you get +----------+----------+ | Header 1 | Header 2 | +----------+----------+ | R1 C1-2 | +----------+----------+ | R2 C1 | R2-3 C2 | | +----------+ | | | +----------+----------+ instead, which is correct. Did you edit table by hand? Regards, -- Nicolas Goaziou