Add a couple comments.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32267 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-30 23:31:21 +00:00
parent 8df174c446
commit 84ccea777f

View File

@ -2415,7 +2415,8 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
bold_flag = false; bold_flag = false;
} }
} }
// FIXME Other such tags? // FIXME XHTML
// Other such tags? What about the other text ranges?
Inset const * inset = getInset(i); Inset const * inset = getInset(i);
if (inset) { if (inset) {
@ -2444,6 +2445,9 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
} }
else else
str += c; str += c;
// We don't want to escape the entities. Note that
// it is safe to do this, since str can otherwise
// only be "-". E.g., it can't be "<".
xs << XHTMLStream::NextRaw() << str; xs << XHTMLStream::NextRaw() << str;
} else } else
xs << c; xs << c;