]> git.lyx.org Git - features.git/commitdiff
Prettify tabular output.
authorRichard Heck <rgheck@comcast.net>
Fri, 1 Apr 2011 18:36:13 +0000 (18:36 +0000)
committerRichard Heck <rgheck@comcast.net>
Fri, 1 Apr 2011 18:36:13 +0000 (18:36 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38184 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetTabular.cpp

index c5cc505004cd2723a9d856d6af45baeac221d488..2fdd162bb1939a6df9e9b342ea42b903ef27660f 100644 (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");