From: Richard Heck Date: Fri, 1 Apr 2011 18:36:13 +0000 (+0000) Subject: Prettify tabular output. X-Git-Tag: 2.0.0~299 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2378db75c1a3997e7c719e38ca31159aeea0de7c;p=features.git Prettify tabular output. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38184 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index c5cc505004..2fdd162bb1 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -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");