diff options
author | Ludovic Courtès | 2009-01-07 22:27:13 +0100 |
---|---|---|
committer | Ludovic Courtès | 2009-01-07 22:27:13 +0100 |
commit | f917c5d8dfa863b6fd6629fd0b70c14496f4462f (patch) | |
tree | e4a3d1e2c153bd3d0d9172fb82be04cc9aefb1dd | |
parent | 0300d315770a44acde5ab5b27feef234b303fd5f (diff) | |
download | skribilo-f917c5d8dfa863b6fd6629fd0b70c14496f4462f.tar.gz skribilo-f917c5d8dfa863b6fd6629fd0b70c14496f4462f.tar.lz skribilo-f917c5d8dfa863b6fd6629fd0b70c14496f4462f.zip |
info: Slightly improve the layout of keyed items (for `description').
* src/guile/skribilo/engine/info.scm (item): Slightly improve the layout
of keyed items.
-rw-r--r-- | src/guile/skribilo/engine/info.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/info.scm b/src/guile/skribilo/engine/info.scm index 2f983b7..a6ac5bd 100644 --- a/src/guile/skribilo/engine/info.scm +++ b/src/guile/skribilo/engine/info.scm @@ -543,7 +543,9 @@ (if k (begin (output k e) - (display ": "))) + (output-newline) + ;; FIXME: We should indent the body. + )) (output (markup-body n) e)))) ;*---------------------------------------------------------------------*/ |