diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index fa446ed3e39..e21071c1e3b 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1683,7 +1683,7 @@ void HtmlGenerator::startFile(const char *name,const char *, Doxygen::indexList->addIndexFile(fileName); lastFile = fileName; - t << substituteHtmlKeywords(g_header,convertToHtml(title),relPath); + t << substituteHtmlKeywords(g_header,convertToHtml(filterTitle(title)),relPath); t << "" << endl; diff --git a/src/index.cpp b/src/index.cpp index a283b0cb549..54839f3e93d 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -3102,7 +3102,7 @@ static void writePages(PageDef *pd,FTVHelp *ftv) if (pd->title().isEmpty()) pageTitle=pd->name(); else - pageTitle=pd->title(); + pageTitle=filterTitle(pd->title()); if (ftv) { diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp index 7fa0153164a..1f8e713a5f3 100644 --- a/src/perlmodgen.cpp +++ b/src/perlmodgen.cpp @@ -2125,7 +2125,7 @@ void PerlModGenerator::generatePerlModForPage(PageDef *pd) SectionInfo *si = Doxygen::sectionDict->find(pd->name()); if (si) - m_output.addFieldQuotedString("title", si->title); + m_output.addFieldQuotedString("title4", filterTitle(si->title)); addPerlModDocBlock(m_output,"detailed",pd->docFile(),pd->docLine(),0,0,pd->documentation()); m_output.closeHash(); diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp index c0bfd81a951..efddcd41222 100644 --- a/src/xmlgen.cpp +++ b/src/xmlgen.cpp @@ -1845,7 +1845,7 @@ static void generateXMLForPage(PageDef *pd,FTextStream &ti,bool isExample) SectionInfo *si = Doxygen::sectionDict->find(pd->name()); if (si) { - t << " " << convertToXML(convertCharEntitiesToUTF8(si->title)) + t << " <title>" << convertToXML(convertCharEntitiesToUTF8(filterTitle(si->title))) << "" << endl; } }