mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
Enable InsetText for XHTML.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32094 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6967440797
commit
e8ee20e5d7
@ -495,10 +495,8 @@ int InsetText::docbook(odocstream & os, OutputParams const & runparams) const
|
||||
}
|
||||
|
||||
|
||||
docstring InsetText::xhtml(odocstream & os, OutputParams const & runparams) const
|
||||
docstring InsetText::xhtml(XHTMLStream & xs, OutputParams const & runparams) const
|
||||
{
|
||||
// FIXME XHTMLStream
|
||||
XHTMLStream xs(os);
|
||||
if (undefined()) {
|
||||
xhtmlParagraphs(text_, buffer(), xs, runparams);
|
||||
return docstring();
|
||||
|
@ -79,7 +79,10 @@ public:
|
||||
///
|
||||
int docbook(odocstream &, OutputParams const &) const;
|
||||
///
|
||||
docstring xhtml(odocstream &, OutputParams const &) const;
|
||||
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
||||
// FIXME XHTMLStream to be removed
|
||||
docstring xhtml(odocstream &, OutputParams const &) const
|
||||
{ return docstring (); }
|
||||
///
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user