Do not show deleted text in the html title

(cherry picked from commit 77c8c15947)
This commit is contained in:
Vincent van Ravesteijn 2012-04-26 16:29:58 +02:00
parent 507701261a
commit 921445239a
2 changed files with 3 additions and 1 deletions

View 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.

View 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