summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog19
-rw-r--r--doc/user/sectioning.skb19
2 files changed, 32 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index ac73bfe..debaf96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,25 @@
 # arch-tag: automatic-ChangeLog--skribilo@sv.gnu.org--2006/skribilo--devo--1.2
 #
 
+2007-08-20 16:30:42 GMT	Ludovic Court`es <ludovic.courtes@laas.fr>	patch-146
+
+    Summary:
+      doc: Updated documentation of `:number' for sections.
+    Revision:
+      skribilo--devo--1.2--patch-146
+
+    * doc/user/sectioning.skb (Chapter): Mention new behavior with
+      non-boolean `:number'.
+      (Sections): Likewise.
+
+    modified files:
+     ChangeLog doc/user/sectioning.skb
+
+    new patches:
+     lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-87
+     lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-88
+
+
 2007-08-20 16:29:46 GMT	Ludovic Court`es <ludovic.courtes@laas.fr>	patch-145
 
     Summary:
diff --git a/doc/user/sectioning.skb b/doc/user/sectioning.skb
index 860821d..bea8116 100644
--- a/doc/user/sectioning.skb
+++ b/doc/user/sectioning.skb
@@ -1,6 +1,7 @@
 ;;; sectioning.skb  --  Sectioning markups
 ;;;
 ;;; Copyright 2003, 2004  Manuel Serrano
+;;; Copyright 2007  Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;;
 ;;; This program is free software; you can redistribute it and/or modify
@@ -40,10 +41,12 @@
 
 (doc-markup 'chapter
 	    `((:title [The title of the chapter.])
-	      (:html-title "The title of window of the HTML browser.")
+	      (:html-title [The title of window of the HTML browser.])
 	      (:number [This argument controls the chapter number.
-A value of ,(tt "#t") means that the Skribe compiler computes the chapter
-number. A value of ,(tt "#f") means that the chapter has no number.])
+A value of ,(tt "#t") means that Skribilo computes the chapter
+number. A value of ,(tt "#f") means that the chapter has no number.  A
+number or string specifies a number to be used in lieu of the
+automatically computed number.])
 	      (:toc ,[This argument controls if the chapter must
 be referenced in the ,(ref :mark "toc" :text "table of contents").])
 	      (:file [The argument must be a boolean. A value of
@@ -73,8 +76,10 @@ in the main target file.])
 (doc-markup 'section 
 	    `((:title [The title of the chapter.])
 	      (:number [This argument controls the chapter number.
-A value of ,(tt "#t") means that the Skribe compiler computes the chapter
-number. A value of ,(tt "#f") means that the chapter has no number.])
+A value of ,(tt "#t") means that Skribilo computes the chapter
+number. A value of ,(tt "#f") means that the chapter has no number.  A
+number or string specifies a number to be used in lieu of the
+automatically computed number.])
 	      (:toc ,[This argument controls if the chapter must
 be referenced in the ,(ref :mark "toc" :text "table of contents").])
 	      (:file [The argument must be a boolean. A value of
@@ -123,4 +128,6 @@ of text.])
 	    '((#!rest node... "The nodes of the quoted text.")))))
 
 
-
+;;; Local Variables:
+;;; coding: latin-1
+;;; End: