@@ -623,20 +623,20 @@ static QCString substituteHtmlKeywords(const QCString &file,
623623 result = substituteKeywords (file,result,
624624 {
625625 // keyword value getter
626- { " $datetime" , [&]() { return " <span class=\" datetime\" ></span>" ; } },
627- { " $date" , [&]() { return " <span class=\" date\" ></span>" ; } },
628- { " $time" , [&]() { return " <span class=\" time\" ></span>" ; } },
629- { " $year" , [&]() { return " <span class=\" year\" ></span>" ; } },
630- { " $navpath" , [&]() { return navPath; } },
631- { " $stylesheet" , [&]() { return cssFile; } },
632- { " $treeview" , [&]() { return treeViewCssJs; } },
633- { " $searchbox" , [&]() { return searchBox; } },
634- { " $search" , [&]() { return searchCssJs; } },
635- { " $mathjax" , [&]() { return mathJaxJs; } },
636- { " $darkmode" , [&]() { return darkModeJs; } },
637- { " $generatedby" , [&]() { return generatedBy; } },
638- { " $extrastylesheet" ,[&]() { return extraCssText; } },
639- { " $relpath$" , [&]() { return relPath; } } // <-- obsolete: for backwards compatibility only
626+ { " $datetime" , [&]() -> QCString { return " <span class=\" datetime\" ></span>" ; } },
627+ { " $date" , [&]() -> QCString { return " <span class=\" date\" ></span>" ; } },
628+ { " $time" , [&]() -> QCString { return " <span class=\" time\" ></span>" ; } },
629+ { " $year" , [&]() -> QCString { return " <span class=\" year\" ></span>" ; } },
630+ { " $navpath" , [&]() -> QCString { return navPath; } },
631+ { " $stylesheet" , [&]() -> QCString { return cssFile; } },
632+ { " $treeview" , [&]() -> QCString { return treeViewCssJs; } },
633+ { " $searchbox" , [&]() -> QCString { return searchBox; } },
634+ { " $search" , [&]() -> QCString { return searchCssJs; } },
635+ { " $mathjax" , [&]() -> QCString { return mathJaxJs; } },
636+ { " $darkmode" , [&]() -> QCString { return darkModeJs; } },
637+ { " $generatedby" , [&]() -> QCString { return generatedBy; } },
638+ { " $extrastylesheet" ,[&]() -> QCString { return extraCssText; } },
639+ { " $relpath$" , [&]() -> QCString { return relPath; } } // <-- obsolete: for backwards compatibility only
640640 });
641641
642642 result = substitute (result," $relpath^" ,relPath); // <-- must be done after the previous substitutions
0 commit comments