# HG changeset patch # User Franz Glasner # Date 1778489563 -7200 # Node ID f761694373e0c52a7f22294e6bfce3382580d10b # Parent 3c517c22df9c00db3be7c653220736632933d83f Do not justify the documentation output. Implemented by adding a custom CSS for haiku. diff -r 3c517c22df9c -r f761694373e0 docs/_static/custom-haiku.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/_static/custom-haiku.css Mon May 11 10:52:43 2026 +0200 @@ -0,0 +1,4 @@ +p { + /* we do not want the standard "justify" */ + text-align: left; +} diff -r 3c517c22df9c -r f761694373e0 docs/conf.py --- a/docs/conf.py Mon May 11 10:39:39 2026 +0200 +++ b/docs/conf.py Mon May 11 10:52:43 2026 +0200 @@ -119,6 +119,7 @@ #html_theme = 'alabaster' html_theme = 'haiku' +html_css_files = ["custom-haiku.css"] html_title = 'The %s v%s' % (project, release) html_short_title = html_title html_last_updated_fmt = "%s (rv:%s)" % (today, release_rev)