From 1c48e83c54179144b82f8e1323101baf0c6b1a8d Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 22 Jan 2008 19:17:15 +0100 Subject: doc: Document all the `*xxx-path*' parameters. * doc/modules/skribilo/documentation/manual.scm (srfi-ref): New. * doc/user/bib.skb: Add `*bib-path*'. * doc/user/image.skb: Add `*image-path*'. * doc/user/lib.skb: Mention `-I' command-line option for `*document-path*'. * doc/user/prgm.skb: Add `*source-path*'. * doc/user/skribec.skb: Add `:ident' for chapter. --- doc/modules/skribilo/documentation/manual.scm | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'doc/modules') diff --git a/doc/modules/skribilo/documentation/manual.scm b/doc/modules/skribilo/documentation/manual.scm index 01d2bda..4010982 100644 --- a/doc/modules/skribilo/documentation/manual.scm +++ b/doc/modules/skribilo/documentation/manual.scm @@ -292,6 +292,17 @@ (define-markup (markup-ref mk) (ref :mark mk :text (code mk))) +;*---------------------------------------------------------------------*/ +;* srfi-ref ... */ +;*---------------------------------------------------------------------*/ +(define-markup (srfi-ref num . text) + (ref :url (format #f "http://srfi.schemers.org/srfi-~a/srfi-~a.html" + num num) + :text (if (null? text) + (format #f "SRFI-~a" num) + text))) + + ;*---------------------------------------------------------------------*/ ;* &the-index ... */ ;*---------------------------------------------------------------------*/ -- cgit v1.2.3