]> git.donarmstrong.com Git - lilypond.git/commitdiff
texi2html: use @subsubheading for interface property headings in the IR
authorReinhold Kainhofer <reinhold@kainhofer.com>
Sat, 23 Aug 2008 14:03:17 +0000 (16:03 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Sat, 23 Aug 2008 14:03:17 +0000 (16:03 +0200)
Adjust the .css file so subsubheadings look like unnumberedsubsubsec.
The problem with @unnumberedsubsubsec is that it (1) generates an entry
in the TOC and (2) messes up the internal navigation buttons, since they
don't have their own @node, so texi2html uses #SECxx as anchor, which does
not exist...

Documentation/lilypond.css
scm/document-backend.scm

index 21145a8ab05e30b14209336696dd66c54a9058ce..3fd59d3675d1ecfa04a87faf62a30e625325dd56 100644 (file)
@@ -22,14 +22,10 @@ h2 {
   font-size: x-large;
   color: #1d7b85;
 }
-.unnumberedsubsubsec {
+.unnumberedsubsubsec, .subsubheading {
   font-size: large;
   color: #1d7b85;
 }
-.subsubheading {
-  font-size: large;
-  color: #3b220d;
-}
 
 /***********************************************************/
 /*                       LINKS                             */
index 02a09736b0927715bde6dfe74458599d14d300e8..8d7bb3bc25c001b99634efb1e47298ebd6843bf3 100644 (file)
 
      (if (pair? uprops)
         (string-append
-         "\n\n@unnumberedsubsubsec User settable properties:\n"
+         "\n\n@subsubheading User settable properties:\n"
          (description-list->texi user-propdocs #t))
         "")
 
      (if (pair? iprops)
         (string-append
-         "\n\n@unnumberedsubsubsec Internal properties:\n"
+         "\n\n@subsubheading Internal properties:\n"
          (description-list->texi internal-propdocs #t))
         ""))))