X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=doc%2Fsbcl-html.dsl;h=f31c4e9816874bd93bbc0e1b0aab259f5bed74d3;hb=7ffdb2f586bf545334b64e639e9e78c30c2063d6;hp=52dd375e9e1e01c34c42e6fb3b0bea3daebef165;hpb=913e06f191acb65c1d99d42234704bec38500ff4;p=sbcl.git diff --git a/doc/sbcl-html.dsl b/doc/sbcl-html.dsl index 52dd375..f31c4e9 100644 --- a/doc/sbcl-html.dsl +++ b/doc/sbcl-html.dsl @@ -36,9 +36,6 @@ what it would be. (WHN 2001-10-15) -;;; 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 @@ -101,6 +98,25 @@ what it would be. (WHN 2001-10-15) ;;; (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) +