浏览代码

Merge topic 'doc-html-anchors'

dfccdd6 Documentation: Fix HTML anchor ranges
David Cole 13 年之前
父节点
当前提交
4db78c7c01
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5 5
      Source/cmDocumentationFormatterHTML.cxx

+ 5 - 5
Source/cmDocumentationFormatterHTML.cxx

@@ -127,7 +127,7 @@ void cmDocumentationFormatterHTML
       {
       os << "<h2><a name=\"section_";
       cmDocumentationPrintHTMLId(os, name);
-      os << "\"/>" << name << "</h2>\n";
+      os << "\"></a>" << name << "</h2>\n";
       }
 
     // Is a list needed?
@@ -167,9 +167,9 @@ void cmDocumentationFormatterHTML
           {
           os << "    <a name=\"" << prefix << ":";
           cmDocumentationPrintHTMLId(os, op->Name.c_str());
-          os << "\"><b><code>";
+          os << "\"></a><b><code>";
           this->PrintHTMLEscapes(os, op->Name.c_str());
-          os << "</code></b></a>: ";
+          os << "</code></b>: ";
           }
         this->PrintHTMLEscapes(os, op->Brief.c_str());
         if(op->Full.size())
@@ -269,9 +269,9 @@ void cmDocumentationFormatterHTML
     return;
     }
 
-  os << "<h2><a name=\"section_Index\">Master Index "
+  os << "<h2><a name=\"section_Index\"></a>Master Index "
      << "CMake " << cmVersion::GetCMakeVersion()
-     << "</a></h2>\n";
+     << "</h2>\n";
 
   if (!sections.empty())
     {