]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/document-translation.scm
Improve formatting of internal documentation.
[lilypond.git] / scm / document-translation.scm
index 38b74e25d89b99ec4b5e1b2115094ce28a73134b..2c11e163d8985729b1401e699b6130ac9bc37800 100644 (file)
@@ -45,7 +45,8 @@
         (string-append
          "Properties (read)"
          (description-list->texi
-          (map (lambda (x) (property->texi 'translation x '())) propsr)))
+          (map (lambda (x) (property->texi 'translation x '())) propsr)
+          #t))
         "")
      
      (if (null? propsw)
@@ -53,7 +54,8 @@
         (string-append
          "Properties (write)" 
          (description-list->texi
-          (map (lambda (x) (property->texi 'translation x '())) propsw))))
+          (map (lambda (x) (property->texi 'translation x '())) propsw)
+          #t)))
      (if  (null? grobs)
          ""
          (string-append
           ""
           (string-append
            "\n\nThis context is built from the following engravers:"
-           (description-list->texi (map document-engraver-by-name consists))))))))
+           (description-list->texi
+            (map document-engraver-by-name consists)
+            #t)))))))
 
 (define (engraver-grobs grav)
   (let* ((eg (if (symbol? grav)
          (map
           (lambda (x) (property->texi 'translation  x '()))
           sortedsyms))
-        (texi (description-list->texi propdescs)))
+        (texi (description-list->texi propdescs #f)))
     texi))
 
 (define (translation-doc-node)