X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=doc%2Fsbcl-html.dsl;h=82ca94d71bd00cfe4108ad02cab88f89bf9ecce0;hb=3c5c2c265637357e88cb5bb36bcfdc5569bdea4c;hp=d2e10ac2c1706f19b41a85c0b262d6086a1d6d7c;hpb=a530bbe337109d898d5b4a001fc8f1afa3b5dc39;p=sbcl.git diff --git a/doc/sbcl-html.dsl b/doc/sbcl-html.dsl index d2e10ac..82ca94d 100644 --- a/doc/sbcl-html.dsl +++ b/doc/sbcl-html.dsl @@ -21,19 +21,12 @@ warranty. See the COPYING and CREDITS files for more information. -- - []> + []> -;;; FIXME: It would be nice to have output files have ".html" extensions -;;; instead of ".htm" extensions. - ;;; Essentially all the stuff in the "Programming languages and ;;; constructs" section (pp. 40-41 of _DocBook: The Definitive Guide_) ;;; is to be monospaced. The one exception is "replaceable", which @@ -96,6 +89,25 @@ warranty. See the COPYING and CREDITS files for more information. ;;; (The "token" element is handled in another section.) ;;; (The "type" element is handled in another section.) + + +;; The extension to use on generated html files. +(define %html-ext% ".html") + +;; Generate a list of the html files created +(define html-manifest #t) + +;; The filename of the root HTML document (e.g, "index"). +(define %root-filename% "index") + +;; If true, chunks will be written to the 'output-dir' instead of +;; the current directory. +(define use-output-dir #t) +(define %output-dir% "html") + +;; Use ID attributes as name for component HTML files +(define %use-id-as-filename% #t) +