feat: css hyphenation
All checks were successful
build / build (push) Successful in 43s

This commit is contained in:
2026-03-19 15:45:29 -06:00
parent befa724551
commit 5bca7890c4
2 changed files with 6 additions and 1 deletions

View File

@@ -115,6 +115,7 @@ p {
margin-bottom: 1.4rem;
padding-right: 0;
vertical-align: baseline;
hyphens: auto;
}
/* Chapter Epigraphs */

View File

@@ -56,6 +56,10 @@
(lr/error e "Error in renderer" {:node node})
(render-renderer-error e)))))))
(def default-language
"Default language, used in the lang attribute of the body tag."
"en")
(defn org-document
"Recursively render an Org-mode document to Hiccup."
[doc]
@@ -66,7 +70,7 @@
[:head
[:title "org document"]
doerg-html/head]
[:body
[:body {:lang default-language}
[:article
rendered]]])))