aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-03-16 16:47:18 +0530
committerArun Isaac2022-03-16 16:47:18 +0530
commitfb51be990a4bb8fb76373b519edfcf11390dcca1 (patch)
tree57cf267f4456c37089d9a719740370a29ad7c8b2
parent40c17373e305670ca70beb297523592ac10d89e1 (diff)
downloadskribilo-fb51be990a4bb8fb76373b519edfcf11390dcca1.tar.gz
skribilo-fb51be990a4bb8fb76373b519edfcf11390dcca1.tar.lz
skribilo-fb51be990a4bb8fb76373b519edfcf11390dcca1.zip
html: Use h2 for section titles.
* src/guile/skribilo/engine/html.scm (html-engine)[custom]: Use <h2> and </h2> for section-title-start and section-title-stop respectively.
-rw-r--r--src/guile/skribilo/engine/html.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm
index 7e4897b..51d8eec 100644
--- a/src/guile/skribilo/engine/html.scm
+++ b/src/guile/skribilo/engine/html.scm
@@ -189,8 +189,8 @@
(chapter-number->string number->string)
(chapter-file #f)
;; section configuration
- (section-title-start "<h3>")
- (section-title-stop "</h3>")
+ (section-title-start "<h2>")
+ (section-title-stop "</h2>")
(section-title-background #f)
(section-title-foreground #f)
(section-title-number-separator " ")