diff options
author | Ludovic Courtès | 2008-01-22 17:09:45 +0100 |
---|---|---|
committer | Ludovic Courtès | 2008-01-22 17:09:45 +0100 |
commit | afc4870d9d13c217cfbbff2c68fa658fb3ef274e (patch) | |
tree | ac6a41d95dd0210cc979f2e0139f860bbdf6dac4 /doc/modules | |
parent | 5607c3d7c973fe2a63d346e891baf80b80b675ab (diff) | |
download | skribilo-afc4870d9d13c217cfbbff2c68fa658fb3ef274e.tar.gz skribilo-afc4870d9d13c217cfbbff2c68fa658fb3ef274e.tar.lz skribilo-afc4870d9d13c217cfbbff2c68fa658fb3ef274e.zip |
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.
Diffstat (limited to 'doc/modules')
-rw-r--r-- | doc/modules/skribilo/documentation/manual.scm | 12 |
1 files changed, 10 insertions, 2 deletions
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 <ludo@gnu.org> +;;; Copyright 2007, 2008 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2003, 2004 Manuel Serrano ;;; ;;; @@ -125,7 +125,15 @@ :action (lambda (n e) (output n e bd)) :after "</font>") (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 */ |