mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
Don't show deleted stuff in output.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33124 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c7c49c46ee
commit
4390d8e3ef
@ -2422,6 +2422,10 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
|
|||||||
|
|
||||||
// parsing main loop
|
// parsing main loop
|
||||||
for (pos_type i = initial; i < size(); ++i) {
|
for (pos_type i = initial; i < size(); ++i) {
|
||||||
|
// let's not show deleted material in the output
|
||||||
|
if (isDeleted(i))
|
||||||
|
continue;
|
||||||
|
|
||||||
Font font = getFont(buf.params(), i, outerfont);
|
Font font = getFont(buf.params(), i, outerfont);
|
||||||
|
|
||||||
// emphasis
|
// emphasis
|
||||||
|
Loading…
Reference in New Issue
Block a user