Prettify tabular output.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38184 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-04-01 18:36:13 +00:00
parent eceefd3d31
commit 2378db75c1

View File

@ -2888,8 +2888,10 @@ docstring Tabular::xhtmlRow(XHTMLStream & xs, row_type row,
attr << " colspan='" << columnSpan(cell) << "'";
xs << html::StartTag(celltag, attr.str());
xs.cr();
ret += cellInset(cell)->xhtml(xs, runparams);
xs << html::EndTag(celltag);
xs.cr();
++cell;
}
xs << html::EndTag("tr");