]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/document-markup.scm
release commit
[lilypond.git] / scm / document-markup.scm
index 85c2659adff415146f640c4828783458ef9e7b1d..7ff76fa3f77dd188a5942c0d7f4642f9f95acef4 100644 (file)
 (define (markup-doc-node)
   (make <texi-node>
     #:name "Markup functions"
-    #:desc "Definitions of the markup functions"
+    #:desc "Definitions of the markup functions."
+
+
     #:text (apply string-append
+                 
+                 "A @code{\\markup} mode command, eg. @code{bold}, is
+coupled with a Scheme function (@code{bold-markup}) implementing the
+formatting.  For use in Scheme, a function @code{make-bold-markup} is
+also defined, which constructs a Markup expression.
+
+This chapter describes all of the @code{...-markup} functions.
+
+"
+
                  (map doc-markup-function
                       (sort markup-function-list markup-function<?) ))
     ))