mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-09 10:47:57 +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;
|
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user