]> git.lyx.org Git - lyx.git/blobdiff - src/Paragraph.cpp
Shortcut for LyX HTML output. (Makes my life easier!)
[lyx.git] / src / Paragraph.cpp
index 39d5540c68697606bec3596101984300943df615..cf7c7145d4ef26cc81cd6db03e795f4356c7aa86 100644 (file)
@@ -5,6 +5,7 @@
  *
  * \author Asger Alstrup
  * \author Lars Gullik Bjønnes
+ * \author Richard Heck (XHTML output)
  * \author Jean-Marc Lasgouttes
  * \author Angus Leeming
  * \author John Levon
@@ -2291,8 +2292,7 @@ pos_type Paragraph::firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runp
        pos_type i;
        for (i = 0; i < size(); ++i) {
                if (Inset const * inset = getInset(i)) {
-// FIXME XHTMLStream
-//                     inset->xhtml(xs, runparams);
+                       inset->xhtml(xs, runparams);
                } else {
                        char_type c = d->text_[i];
                        if (c == ' ')
@@ -2425,8 +2425,7 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
                        OutputParams np = runparams;
                        if (!il.htmlisblock())
                                np.html_in_par = true;
-                       // FIXME XHTMLStream
-                       // retval += inset->xhtml(xs, np);
+                       retval += inset->xhtml(xs, np);
                } else {
                        char_type c = d->text_[i];