diff options
author | Arun Isaac | 2023-01-28 01:33:56 +0000 |
---|---|---|
committer | Arun Isaac | 2023-01-28 01:33:56 +0000 |
commit | f9e9d32a23dbfe0e3df9d72559b16e76faead51f (patch) | |
tree | a2d51dc94f5d96ac0976199658620a840eee5f3d | |
parent | 1038bc2919b69028d8a99276d8b732926c87d2cb (diff) | |
download | skribilo-f9e9d32a23dbfe0e3df9d72559b16e76faead51f.tar.gz skribilo-f9e9d32a23dbfe0e3df9d72559b16e76faead51f.tar.lz skribilo-f9e9d32a23dbfe0e3df9d72559b16e76faead51f.zip |
html: Do not add br tag after section.
* src/guile/skribilo/engine/html.scm (section): Do not br tag after.
-rw-r--r-- | src/guile/skribilo/engine/html.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm index 08a8eca..2ab5117 100644 --- a/src/guile/skribilo/engine/html.scm +++ b/src/guile/skribilo/engine/html.scm @@ -1368,7 +1368,7 @@ (markup-writer 'section :options '(:title :html-title :number :toc :file :env) :before html-section-title - :after "</div><br>\n") + :after "</div>\n") ;; on-file section writer (markup-writer 'section |