From afc4870d9d13c217cfbbff2c68fa658fb3ef274e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 22 Jan 2008 17:09:45 +0100 Subject: doc: Use CSS style sheet in HTML output. * doc/modules/skribilo/documentation/manual.scm: Set `css' custom of the HTML engine. Explicitly initialize the `chapter-file', etc., customs. * doc/user/Makefile.am (dist_html_DATA): New. * doc/user/skribilo.css: New file. --- doc/modules/skribilo/documentation/manual.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'doc/modules') diff --git a/doc/modules/skribilo/documentation/manual.scm b/doc/modules/skribilo/documentation/manual.scm index beb6cc6..01d2bda 100644 --- a/doc/modules/skribilo/documentation/manual.scm +++ b/doc/modules/skribilo/documentation/manual.scm @@ -1,6 +1,6 @@ ;;; manual.scm -- Skribilo manuals and documentation style. ;;; -;;; Copyright 2007 Ludovic Courtès +;;; Copyright 2007, 2008 Ludovic Courtès ;;; Copyright 2003, 2004 Manuel Serrano ;;; ;;; @@ -125,7 +125,15 @@ :action (lambda (n e) (output n e bd)) :after "") (engine-custom-set! he 'web-book-main-browsing-extra html-browsing-extra) - (engine-custom-set! he 'favicon "lambda.gif")) + (engine-custom-set! he 'favicon "lambda.gif") + + ;; One chapter per file, starting with a partial table of contents. + (engine-custom-set! he 'chapter-file #t) + (engine-custom-set! he 'section-file #f) + (engine-custom-set! he 'subsection-file #f) + (engine-custom-set! he 'subsubsection-file #f) + + (engine-custom-set! he 'css "skribilo.css")) ;*---------------------------------------------------------------------*/ ;* LaTeX */ -- cgit v1.2.3