about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorArun Isaac2023-08-09 16:30:42 +0100
committerArun Isaac2023-08-09 16:43:59 +0100
commit1b73af1411c08f42b682b79c0d1e717c891831bd (patch)
tree6acf77e239d4d4e7fc9238510fd8ba78f472e71e /doc
parent3413a9f3fe0a1b4ebc0f10e80e462e712150be2c (diff)
downloadguix-forge-1b73af1411c08f42b682b79c0d1e717c891831bd.tar.gz
guix-forge-1b73af1411c08f42b682b79c0d1e717c891831bd.tar.lz
guix-forge-1b73af1411c08f42b682b79c0d1e717c891831bd.zip
doc: Re-indent abbr markup writer.
* doc/skribilo.scm (html-engine): Re-indent.
Diffstat (limited to 'doc')
-rw-r--r--doc/skribilo.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/skribilo.scm b/doc/skribilo.scm
index 45f35a8..e65afe7 100644
--- a/doc/skribilo.scm
+++ b/doc/skribilo.scm
@@ -345,10 +345,10 @@ are a list of <record-field> objects."
   (engine-custom-set! html-engine 'css "/style.css")
   (engine-custom-set! html-engine 'charset "UTF-8")
   (markup-writer 'abbr html-engine
-                 #:options '(#:short #:long)
-                 #:action (lambda (markup engine)
-                            (display (format "<abbr title=\"~a\">~a</abbr> (~a)"
-                                             (markup-option markup #:long)
-                                             (markup-option markup #:short)
-                                             (markup-option markup #:long))
-                                     (current-output-port)))))
+    #:options '(#:short #:long)
+    #:action (lambda (markup engine)
+               (display (format "<abbr title=\"~a\">~a</abbr> (~a)"
+                                (markup-option markup #:long)
+                                (markup-option markup #:short)
+                                (markup-option markup #:long))
+                        (current-output-port)))))