diff options
author | Brad King <brad.king@kitware.com> | 2012-05-07 08:50:08 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-05-07 08:51:57 -0400 |
commit | 707afd1ed0d5d21760e33c5345b86be22d3d6ef5 (patch) | |
tree | 945bdd5860e2723d20563d06a9c56b6a4ac17473 | |
parent | dfccdd65fb61198498f9d3211917afd4788bbc5d (diff) | |
download | cmake-707afd1ed0d5d21760e33c5345b86be22d3d6ef5.tar.gz |
Documentation: Improve HTML section index format
Add a newline after section index list items. This makes the generated
HTML source more readable.
-rw-r--r-- | Source/cmDocumentationFormatterHTML.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDocumentationFormatterHTML.cxx b/Source/cmDocumentationFormatterHTML.cxx index ed28b45bf7..cd0077ed92 100644 --- a/Source/cmDocumentationFormatterHTML.cxx +++ b/Source/cmDocumentationFormatterHTML.cxx @@ -145,7 +145,7 @@ void cmDocumentationFormatterHTML cmDocumentationPrintHTMLId(os, op->Name.c_str()); os << "\"><b><code>"; this->PrintHTMLEscapes(os, op->Name.c_str()); - os << "</code></b></a></li>"; + os << "</code></b></a></li>\n"; } } os << "</ul>\n" ; |