mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix bug #10153: There's a mechanism in XHTML output that defers the
output of tags until we know they're needed. In the case of HTML
tables, empty cells should of course be output, so we need to force
the tags to be output.
(cherry picked from commit 35d449c5da
)
This commit is contained in:
parent
bfcd8a3991
commit
8731689d41
@ -3019,7 +3019,7 @@ docstring Tabular::xhtmlRow(XHTMLStream & xs, row_type row,
|
||||
else if (isMultiRow(cell))
|
||||
attr << " rowspan='" << rowSpan(cell) << "'";
|
||||
|
||||
xs << html::StartTag(celltag, attr.str()) << html::CR();
|
||||
xs << html::StartTag(celltag, attr.str(), true) << html::CR();
|
||||
ret += cellInset(cell)->xhtml(xs, runparams);
|
||||
xs << html::EndTag(celltag) << html::CR();
|
||||
++cell;
|
||||
|
@ -69,6 +69,8 @@ What's new
|
||||
- Resolve problem on Windows with importing files from directories with
|
||||
accented characters on FAT drives (bug 10218).
|
||||
|
||||
- Make sure we output all XHTML table cells, even the empty ones (bug 10153).
|
||||
|
||||
|
||||
* LYX2LYX
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user