]> git.lyx.org Git - features.git/commitdiff
Do not show deleted text in the html title
authorVincent van Ravesteijn <vfr@lyx.org>
Thu, 26 Apr 2012 14:29:58 +0000 (16:29 +0200)
committerVincent van Ravesteijn <vfr@lyx.org>
Sun, 29 Apr 2012 15:00:10 +0000 (17:00 +0200)
(cherry picked from commit 77c8c159470d4d6cd7c433523a0581a3fdcd0f94)

src/Paragraph.cpp
status.20x

index 8716982b027a22d827601f9855baea25f2444193..3054680573c12f3ce701494e4a6db62232dfdc9f 100644 (file)
@@ -1395,7 +1395,7 @@ void Paragraph::Private::validate(LaTeXFeatures & features) const
 
        if (features.runparams().flavor == OutputParams::HTML
            && layout_->htmltitle()) {
-               features.setHTMLTitle(owner_->asString(AS_STR_INSETS));
+               features.setHTMLTitle(owner_->asString(AS_STR_INSETS | AS_STR_SKIPDELETE));
        }
 
        // check the params.
index 110c722415c7013041998493561a8a72b2c455e1..51d64120e103e67c619cff0e37634293f3a719af 100644 (file)
@@ -102,6 +102,8 @@ What's new
 - Don't output extra body tags with included files when generating
   XHTML.
 
+- Do not include deleted text in the title of the XHTML output.
+
 
 * USER INTERFACE