From 859170ed70be8ad6a418cd9b6610aa1ee0d85ae5 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Sat, 23 Aug 2008 16:03:17 +0200 Subject: [PATCH] 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... --- Documentation/lilypond.css | 6 +----- scm/document-backend.scm | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) 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)) "")))) -- 2.39.5