From: Reinhold Kainhofer Date: Sat, 23 Aug 2008 14:03:17 +0000 (+0200) Subject: texi2html: use @subsubheading for interface property headings in the IR X-Git-Tag: release/2.11.58-1~32^2~29 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=859170ed70be8ad6a418cd9b6610aa1ee0d85ae5;p=lilypond.git texi2html: use @subsubheading for interface property headings in the IR 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... --- diff --git a/Documentation/lilypond.css b/Documentation/lilypond.css index 21145a8ab0..3fd59d3675 100644 --- a/Documentation/lilypond.css +++ b/Documentation/lilypond.css @@ -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 */ diff --git a/scm/document-backend.scm b/scm/document-backend.scm index 02a09736b0..8d7bb3bc25 100644 --- a/scm/document-backend.scm +++ b/scm/document-backend.scm @@ -25,13 +25,13 @@ (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)) ""))))