Don't be so cute with VSpace: We just output it inline now for

XHTML.

Fixes bug #8154.
This commit is contained in:
Richard Heck 2016-06-29 21:57:35 -04:00
parent ddc28f0374
commit 8ea3d1f130

View File

@ -232,14 +232,12 @@ int InsetVSpace::docbook(odocstream & os, OutputParams const &) const
}
docstring InsetVSpace::xhtml(XHTMLStream &, OutputParams const &) const
docstring InsetVSpace::xhtml(XHTMLStream & os, OutputParams const &) const
{
odocstringstream ods;
XHTMLStream xds(ods);
string const len = space_.asHTMLLength();
string const attr = "style='height:" + (len.empty() ? "1em" : len) + "'";
xds << html::StartTag("div", attr, true) << html::EndTag("div");
return ods.str();
os << html::StartTag("div", attr, true) << html::EndTag("div");
return docstring();
}