mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
8df174c446
commit
84ccea777f
@ -2415,7 +2415,8 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
|
||||
bold_flag = false;
|
||||
}
|
||||
}
|
||||
// FIXME Other such tags?
|
||||
// FIXME XHTML
|
||||
// Other such tags? What about the other text ranges?
|
||||
|
||||
Inset const * inset = getInset(i);
|
||||
if (inset) {
|
||||
@ -2444,6 +2445,9 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
|
||||
}
|
||||
else
|
||||
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;
|
||||
} else
|
||||
xs << c;
|
||||
|
Loading…
Reference in New Issue
Block a user