diff options
author | Ludovic Courtès | 2008-01-29 17:52:44 +0100 |
---|---|---|
committer | Ludovic Courtès | 2008-01-29 17:52:44 +0100 |
commit | bda408c218cad42b482981213de79e3382df87b6 (patch) | |
tree | 8c1b09217724d4edb19a3e1369355f9c73e980eb /doc/user/user.skb | |
parent | 54936ba52223f0e1e92c8e7aa393be904299e28a (diff) | |
download | skribilo-bda408c218cad42b482981213de79e3382df87b6.tar.gz skribilo-bda408c218cad42b482981213de79e3382df87b6.tar.lz skribilo-bda408c218cad42b482981213de79e3382df87b6.zip |
doc: Document the `outline' reader.
* doc/user/Makefile.am (EXTRA_DIST): Add `src/outline.txt' and
`loute.skb'.
* doc/user/compiler.skb: Add ref to `outline-syntax'.
* doc/user/syntax.skb: Re-structure, add `outline-syntax' section.
* doc/user/user.skb: Use `(skribilo reader)' and `(ice-9 pretty-print)'.
Diffstat (limited to 'doc/user/user.skb')
-rw-r--r-- | doc/user/user.skb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/user/user.skb b/doc/user/user.skb index 4147292..3844df8 100644 --- a/doc/user/user.skb +++ b/doc/user/user.skb @@ -33,13 +33,15 @@ (use-modules (skribilo package eq) (skribilo package pie) (skribilo package slide) - (skribilo package web-book2)) + (skribilo package web-book2) + (skribilo reader)) (if %have-ploticus? (set! %ploticus-program %ploticus-path)) ;; Modules needed, e.g., to get the output of "skribilo-config --help". (use-modules (ice-9 popen) - (ice-9 rdelim)) + (ice-9 rdelim) + (ice-9 pretty-print)) ;*---------------------------------------------------------------------*/ |